Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
434984 俞皓天 【C3-2】字符图形2-星号倒直角 C++ 通过 100 2 MS 248 KB 177 2026-04-03 20:12:41

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<<"*"; } cout<<endl; } return 0; }


测评信息: