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