| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313137 | 朱宸宇 | 【C2-1】循环输出1~100之间的每个数 | C++ | Compile Error | 0 | 0 MS | 0 KB | 306 | 2025-03-19 17:18:29 |
#include <iostream> using namespace std; int main() { for(int i=1; i<=100; i++) cout<<i<<"\n"; return 0; }