提交时间:2024-11-15 14:12:47
运行 ID: 56600
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int x=1;x<=n;x++) { cout<<"*"; } cout<<endl; for(int x=n-2;x>=1;x--) { for(int y=1;y<=x;y++) { cout<<" "; } cout<<"*"<<endl; } for(int x=1;x<=n;x++) { cout<<"*"; } return 0; }