Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
353861 | 胡珂 | 【C2-1】循环输出5~1之间的每个数 | C++ | Accepted | 100 | 1 MS | 244 KB | 121 | 2025-10-01 12:33:40 |
#include <bits/stdc++.h> using namespace std; int main(){ for(int i=5;i>=1;i--){ cout<<i<<endl; } return 0; }