알고리즘
[백준 2440][Swift] 별 찍기 - 3
moving
2022. 4. 1. 16:19
728x90
코드
let input = Int(readLine()!)!
for i in 1...input {
for _ in 0...input - i {
print("*", terminator: "")
}
print("")
}
https://www.acmicpc.net/problem/2440