728x90
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
for (int i = 1;i <= n;i++) {
for (int j = 1;j <= i;j++) {
cout << "*";
}
cout << "\n";
}
return 0;
}
'BEAKJOON' 카테고리의 다른 글
백준(10871번 X보다 작은 수)풀이 C++ (0) | 2020.12.03 |
---|---|
백준(2439번 별찍기 - 2)풀이 C++ (0) | 2020.12.03 |
백준(11022번 A+B - 8)풀이 C++ (0) | 2020.12.02 |
백준(11021번 A+B - 7)풀이 C++ (0) | 2020.12.02 |
백준(2742번 기찍 N)풀이 C++ (0) | 2020.12.02 |