| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144550 | 王润中 | 12for循环练习I | C++ | Wrong Answer | 0 MS | 268 KB | 138 | 2026-01-24 10:28:33 |
#include<iostream> using namespace std; int main() { int m,a; a=1; cin>>m; for(int i=m;i<=a;i++) { cout<<i<<endl; } }
------Input------
4
------Answer-----
1 2 3 4
------Your output-----