Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
434988 俞皓天 【C3-2】数字直角(3) C++ 通过 100 3 MS 248 KB 175 2026-04-03 20:14:25

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=n;i>=1;i--){ for(int j=1;j<=i;j++){ cout<<j; } cout<<endl; } return 0; }


测评信息: