Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5621 | 谢锦卓 | 12for循环练习II | C++ | Output Limit Exceeded | 3 MS | 264 KB | 182 | 2024-12-02 19:27:31 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ int i,j; cin>>i>>j; for(i<j;0<i,j<1000;i=i+1){ cout<<i<<endl; } return 0; }