| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151258 | 王培臻 | 打印沙漏 | C++ | Wrong Answer | 1 MS | 276 KB | 438 | 2026-04-11 14:11:41 |
#include<bits/stdc++.h> using namespace std; int main() { long long a; cin>>a; for(int i=a;i>0;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=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; }
------Input------
3
------Answer-----
***** *** * *** *****
------Your output-----
***** *** * * *** *****