题解(不抄袭)
2023-10-15 16:07:01
发布于:北京
50阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int n,f;
int main() {
cin>>n;
for(int i=1; i<=n; i++) {
for(int j=0; j<n-i; j++) {
cout<<' ';
}
cout<<'*';
short k=i*2-1;
if(k!=1) {
for(int j=0; j<k-2; j++) {
cout<<' ';
}
cout<<'*';
}
cout<<endl;
}
for(int i=n-1; i>=1; i--) {
for(int j=0; j<n-i; j++) {
cout<<' ';
}
cout<<'*';
short k=i*2-1;
if(k!=1) {
for(int j=0; j<k-2; j++) {
cout<<' ';
}
cout<<'*';
}
cout<<endl;
}
return 0;
}
谢谢大家,不要抄袭哈,不喜勿喷
这里空空如也
有帮助,赞一个