真六
2023-10-17 20:09:11
发布于:浙江
19阅读
0回复
0点赞
想必很多人是复制题解的吧。(那必须的)
开个玩笑
#include <iostream>
using namespace std;
int main(){
int n;
cin >> n;
for(int i = 1;i <= n;i++){
for(int j = 0;j < (n-i);j++){
cout << " ";
}
cout << "*";
for(int j = 1;j < i*2-2;j++){
cout << " ";
}
if(i != 1){
cout << "*" <<endl;
}else{
cout << endl;
}
}
for(int i = n-1;i >0;i--){
for(int j = 0;j < (n-i);j++){
cout << " ";
}
cout << "*";
for(int j = 1;j < i*2-2;j++){
cout << " ";
}
if(i != 1){
cout << "*"<< enumdl;
}else{
cout << endl;
}
}
return 0;
}
全部评论 1
我就是懒得打
2024-06-27 来自 广东
0
有帮助,赞一个