| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156037 | 李沐阳 | 打印反直角三角形 | C++ | Accepted | 12 MS | 268 KB | 225 | 2026-06-20 10:48:19 |
#include<bits/stdc++.h> using namespace std; int main() { int i,j,n; cin>>n; for(i=n;i>=1;i--){ for(j=1;j<=i-1;j++){ cout<<' '; } for(j=n;j>=i;j--){ cout<<'*'; } cout<<endl; } return 0; }