#include <iostream>
using namespace std;
int main(void)
{
int N = 0;
char array = {0,};
cin >> N;
if (N>=1 and N<=100)
{
for (int i=1; i<=N; i++) // N번째 줄
{
for (int j=1; j<=i; j++) // N개의 별
{
cout << "*";
}
cout << '\n';
}
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2440번 별 찍기 - 3 (C++) (0) | 2022.03.16 |
---|---|
[백준] 2439번 별 찍기 - 2 (C++) (0) | 2022.03.16 |
[백준] 2309번 일곱 난쟁이 (파이썬) (0) | 2022.03.15 |
[백준] 2231번 분해합 (파이썬) (0) | 2022.03.15 |
[백준] 2164번 카드2 (파이썬) (0) | 2022.03.14 |