| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151257 | 王培臻 | 打印菱形 | C++ | Accepted | 2 MS | 272 KB | 436 | 2026-04-11 14:08:55 |
#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; } for(int i=a-1;i>0;i--){ for(int d=1;d<=a-i;d++){ cout<<" "; } for(int j=1;j<=2*i-1;j++){ cout<<"*"; } cout<<endl; } return 0; }