| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151251 | 汪义罗 | 打印菱形 | C++ | Accepted | 2 MS | 276 KB | 380 | 2026-04-11 14:03:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n-i;j++){ cout<<' '; } for(int a=1;a<=2*i-1;a++){ cout<<'*'; } cout<<endl; } for(int i=n;i>=2;i--){ for(int j=1;j<=n-i+1;j++){ cout<<' '; } for(int a=1;a<=2*i-3;a++){ cout<<'*'; } cout<<endl; } return 0; }