Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144546 王润中 12for循环练习I C++ Wrong Answer 1 MS 272 KB 138 2026-01-24 10:26:35

Tests(0/10):


Code:

#include<iostream> using namespace std; int main() { int m,a; a=1; cin>>m; for(int i=m;i>=1;i--) { cout<<i<<endl; } }


Run Info:

------Input------
4
------Answer-----
1 2 3 4
------Your output-----
4 3 2 1