mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:58:48 +00:00
727. 菱形
https://www.acwing.com/problem/content/submission/code_detail/6846123/
This commit is contained in:
parent
d58318e12c
commit
c62ff39d90
27
AcWing/727/727.cpp
Normal file
27
AcWing/727/727.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user