| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 312075 | 蒋宇阳 | 【C2-1】循环输出1~100之间的每个数 | C++ | Accepted | 100 | 5 MS | 248 KB | 136 | 2025-03-09 10:56:40 |
#include<iostream> using namespace std; int main(){ int i=1; while(i<=100){ cout<<i<<endl; i++; } return 0; }