728x90
별 찍기 문제입니다.
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; ++i) {
for (int j = 1; j <= n - i; ++j) {
cout << " ";
}
for (int j = 1; j < i; ++j) {
cout << "* ";
}
cout << "*\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[C++] 백준 14954번 Happy Number (0) | 2019.10.01 |
---|---|
[C++] 백준 10992번 별 찍기 - 17 (0) | 2019.10.01 |
[C++] 백준 10990번 별 찍기 - 15 (0) | 2019.10.01 |
[C++] 백준 2556번 별 찍기 - 14 (0) | 2019.10.01 |
[C++] 백준 2523번 별 찍기 - 13 (2) | 2019.10.01 |