프로그래밍/Baekjoon

(파이썬) 백준 알고리즘 2438번

J_Remind 2018. 12. 2. 15:45

문제

풀이 (Python)

1
2
3
4
5
n  = int(input())
 
for i in range(n):
    print('*'*(i+1))
 
cs


문제 출처

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