Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
316885 gyszliuziang25 星号三角阵(三) T2 C++ 通过 6 MS 704 KB 223 2026-04-17 16:32:37

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ int a;cin>>a; for(int i=0;i<a;i++){ for(int j=0;j<i;j++){ cout<<" "; } for(int j=a;j>i;j--){ cout<<"*"; } cout<<endl; } return 0; }


测评信息: