| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151252 | 王培臻 | 打印三角形 | C++ | Accepted | 4 MS | 272 KB | 274 | 2026-04-11 14:03:25 |
#include<bits/stdc++.h> using namespace std; int main() { long long a; cin>>a; for(int i=1;i<=a;i++){ for(int d=1;d<=a-i;d++){ cout<<" "; } for(int j=1;j<=2*i-1;j++){ cout<<"*"; } cout<<endl; } return 0; }