Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153829 陈君竹 12for循环练习II C++ Accepted 6 MS 272 KB 178 2026-05-24 09:55:58

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int i,q; cin>>i>>q; for(i<q;i<=q;i++) { cout<<i<<endl; } return 0; }