Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149849 张锦程 12for循环练习II C++ Accepted 1 MS 276 KB 157 2026-03-18 21:10:05

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int i,j; cin>>i>>j; while(i<=j){ cout<<i<<" "; i++; }return 0; }