0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-02 18:54:51 +08:00 committed by Baoshuo Ren
parent d58318e12c
commit c62ff39d90
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

27
AcWing/727/727.cpp Normal file
View File

@ -0,0 +1,27 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 1; i <= n / 2 + 1; i++) {
for (int j = 1; j <= n / 2 + 1 - i; j++) {
cout << ' ';
}
for (int j = 1; j <= 2 * i - 1; j++) {
cout << '*';
}
cout << endl;
}
for (int i = 1; i <= n / 2; i++) {
for (int j = 1; j <= i; j++) {
cout << ' ';
}
for (int j = 1; j <= 2 * ((n / 2 + 1) - i) - 1; j++) {
cout << '*';
}
cout << endl;
}
return 0;
}