题解
2023-08-31 11:59:57
发布于:北京
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
int a;
cin >> a;
for(int j = 1; j <= a; j++) {
for(int i = 1; i <= a - j; i++) {
cout << " ";
}
for(int k = 1; k <= 2 * j - 1; k++) {
cout << "*";
}
cout << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个