728x90
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < i; j++) {
cout << " ";
}
for (int j = 0; j < 2 * n - 2 * i - 1; j++) {
cout << "*";
}
cout << endl;
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2445번 별 찍기 - 8 (0) | 2020.01.22 |
---|---|
[백준] 2444번 별 찍기 - 7 (0) | 2020.01.22 |
[백준] 1463번 1로 만들기 (0) | 2020.01.21 |
[백준] 1261번 (시간 초과) (0) | 2020.01.21 |
[백준] 1475번 방 번호 (0) | 2020.01.20 |