Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
307181 丁虞轩 【C2-1】循环输出5~1之间的每个数 C++ 通过 100 1 MS 244 KB 153 2025-01-02 19:50:17

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n=5; while(n>=1){ cout<<n<<endl; n--; } return 0; }


测评信息: