Home [Python] 백준 2438번 : 별 찍기 - 1
Post
Cancel

[Python] 백준 2438번 : 별 찍기 - 1

Problem

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

Solution

1
2
3
4
n = int(input())
for i in range(n):
    i += 1
    print("*" * i)
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 10869번 : 사칙연산

[Python] 백준 2750번 : 수 정렬하기