Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101106 毛靖平 12for循环练习II C++ Accepted 4 MS 276 KB 178 2024-12-14 14:40:31

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl using namespace std; int main(){ int a,b; cin>>a>>b; for(int c=a;c<=b;c++){ cout<<c<<endl; } return 0; }