Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126924 | 王培用 | 12for循环练习II | C++ | Accepted | 3 MS | 272 KB | 144 | 2025-07-22 16:18:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int i1,j; cin>>i1>>j; for(int i=i1;i<=j;i++){ cout<<i<<endl; } return 0; }