| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 432583 | 沈子钰 | 【C2-1】循环输出1~100之间的每个数 | C++ | Accepted | 100 | 10 MS | 236 KB | 127 | 2026-03-14 15:29:29 |
#include<iostream> using namespace std; int main(){ for(int i=1; i<=100; i++){ cout<<i<<endl; } return 0; }