728x90
별찍기 문제입니다.
N * 2 - 1 줄만큼 출력됩니다.
i줄에는 abs(N-i) 의 공백이 존재합니다.
i줄에는 N - abs(N-i) 의 별이 존재합니다.
#include <iostream>
#include <algorithm>
using namespace std;
int main(int argc, char* argv[])
{
int n;
cin >> n;
for (int i = 1; i <= n * 2 - 1; ++i) {
for (int j = 1; j <= abs(n - i); ++j) {
cout << " ";
}
for (int j = 1; j <= n - abs(n - i); ++j) {
cout << "*";
}
cout << "\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[C++] 백준 2556번 별 찍기 - 14 (0) | 2019.10.01 |
---|---|
[C++] 백준 2523번 별 찍기 - 13 (2) | 2019.10.01 |
[C++] 백준 10451번 순열 사이클 (0) | 2019.09.30 |
[C++] 백준 10699번 오늘 날짜 (0) | 2019.09.28 |
[C++] 백준 1547번 공 (0) | 2019.09.28 |