Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3945 C班-吴浩轩 请输出1~n之间所有的整数 C++ 通过 100 1 MS 260 KB 141 2025-01-04 15:53:50

Tests(1/1):


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


测评信息: