Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91964 | 林嘉乐 | 12for循环练习I | C++ | Accepted | 3 MS | 272 KB | 168 | 2024-09-27 18:19:51 |
#include<iostream> using namespace std; int main(){ int n; int x; cin>>n; for(x=1;x<=n;x++){ cout<<x<<endl; } return 0; }