백준 2438번 문제풀이


https://www.acmicpc.net/problem/2438



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include<iostream>
 
using namespace std;
 
int main()
{
    int N;
 
    cin >> N;
 
    for (int i = 1; i < N + 1; i++)
    {
        for (int j = 0; j < i; j++)
        {
            cout << "*";
        }
        cout << "\n";
    }
}
cs



+ Recent posts