보안을 그리다, 훈이

[Baekjoon/Python3] 2440번 별 찍기 - 3 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2440번 별 찍기 - 3

HooNeee 2020. 12. 3. 01:18

[Baekjoon/Python3] 2440번 별 찍기 - 3

 

www.acmicpc.net/problem/2440

 

2440번: 별 찍기 - 3

첫째 줄에는 별 N개, 둘째 줄에는 별 N-1개, ..., N번째 줄에는 별 1개를 찍는 문제

www.acmicpc.net

 

n = int(input())
for i in range(n, 0, -1):
    print('*' * i)
Comments