| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153884 | 刘睿霖 | 12for循环练习II | C++ | Accepted | 6 MS | 280 KB | 183 | 2026-05-24 10:54:45 |
#include<bits/stdc++.h> using namespace std; int main() { int i; int j; cin>>i>>j; for(int a=i;a<=j;a++) { cout<<a<<endl; } return 0; }