Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100233 | 顾梦琪 | 12for循环练习II | C++ | Compile Error | 0 MS | 0 KB | 139 | 2024-12-07 11:50:06 |
#include<iostream> using namespace std; int main(){ int i,f; cin>>i>>f; for(int a=i;i<=f;i++){ cout<<i<<endl; }
Main.cc: In function 'int main()': Main.cc:6:10: warning: unused variable 'a' [-Wunused-variable] for(int a=i;i<=f;i++){ ^ Main.cc:9:3: error: expected '}' at end of input } ^