mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 10:38:54 +00:00
28 lines
580 B
C++
28 lines
580 B
C++
#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;
|
|
}
|