Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150380 赵奕杰 12for循环练习I C++ Accepted 3 MS 276 KB 139 2026-03-27 19:32:57

Tests(10/10):


Code:

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