Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
433281 沈昊煊 【C2-5】输出前100个末尾为5的数字 C++ 通过 100 11 MS 240 KB 143 2026-03-20 19:25:06

Tests(1/1):


#include<iostream> using namespace std; int main(){ int a=5; for(int i=1;i<=100;i++){ cout<<a<<endl; a=a+10; } return 0; }


测评信息: