Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132790 刘杨国卿 12for循环练习II C++ Accepted 7 MS 272 KB 146 2025-10-12 12:08:43

Tests(10/10):


Code:

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