Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89703 刘玥 12for循环练习II C++ Accepted 3 MS 272 KB 155 2024-09-04 19:08:36

Tests(10/10):


Code:

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