| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122981 | 张修睿 | 12for循环练习II | C++ | Compile Error | 0 MS | 0 KB | 150 | 2025-06-22 12:39:13 |
include<bits/stdc++.h> using namespace std; int main() { int j,i; cin>>j>>i; for(int a=j;a<=i;a++){ cout<<a<<endl; } }
Main.cc:1:1: error: 'include' does not name a type
include
^
Main.cc: In function 'int main()':
Main.cc:5:5: error: 'cin' was not declared in this scope
cin>>j>>i;
^
Main.cc:7:6: error: 'cout' was not declared in this scope
cout<