Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100237 | 刘明沅 | 12for循环练习II | C++ | Accepted | 4 MS | 268 KB | 174 | 2024-12-07 11:52:30 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,o; cin>>n>>o; for(int i=n;i<=o;i=i+1){ cout<<i<<endl; } return 0; }