Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
313139 | 朱宸宇 | 【C2-1】循环输出1~100之间的每个数 | C++ | Accepted | 100 | 5 MS | 244 KB | 118 | 2025-03-19 17:19:57 |
#include <iostream> using namespace std; int main() { for (int i=1; i<=100; i++) cout<<i<<endl; return 0; }