| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141962 | 毛君浩 | 12for循环练习II | C++ | Compile Error | 0 MS | 0 KB | 133 | 2025-12-29 16:47:20 |
using namespace std; int main(){ int j,n,i; cin>>j>>n; for(i=j;i<=n;i++) cout<<i<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:4:4: error: 'cin' was not declared in this scope
cin>>j>>n;
^
Main.cc:6:9: error: 'cout' was not declared in this scope
cout<