Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119201 | 白碣琨 | 12输出3的倍数 | C++ | Compile Error | 0 MS | 0 KB | 131 | 2025-05-17 10:24:48 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int a=1;a<=100;a+=){ cout<<a<<endl ; } return 0; }
Main.cc: In function 'int main()': Main.cc:7:24: error: expected primary-expression before ')' token for(int a=1;a<=100;a+=){ ^