Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
334972 | 李俞家骅 | 【C2-1】循环输出1~100之间的每个数 | C++ | Accepted | 100 | 9 MS | 232 KB | 147 | 2025-07-21 10:57:44 |
#include<bits/stdc++.h> using namespace std; int main(){ int i=1; while(i<=100){ cout<<i<<endl; i=i+1; } return 0; }