알고리즘

[백준 2439][Swift] 별 찍기 - 2

moving 2022. 4. 1. 16:12
728x90

 

 

코드

let input = Int(readLine()!)!

for i in 1...input {
    var total: String = ""
    for j in 1...input {
        if j <= input - i {
            total += " "
        } else {
            total += "*"
        }
    }
    print(total)
}

 

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

 

2439번: 별 찍기 - 2

첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제 하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오.

www.acmicpc.net