Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131254 罗嘉睿 12for循环练习II C++ Accepted 7 MS 268 KB 143 2025-09-21 16:05:04

Tests(10/10):


Code:

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