Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1642 杨洋杰 12for循环练习II C++ Accepted 1 MS 268 KB 160 2023-10-28 18:31:53

Tests(10/10):


Code:

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