| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132794 | 岑思烁 | 12for循环练习II | C++ | Output Limit Exceeded | 1 MS | 264 KB | 143 | 2025-10-12 12:09:17 |
#include<bits/stdc++.h> using namespace std; int main (){ int i,j; cin>>i>>j; for( i=i;j<=j;i++){ cout<<i<<" "; } return 0; }