-
[백준 2439][Swift] 별 찍기 - 2알고리즘 2022. 4. 1. 16:12728x90
코드
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
'알고리즘' 카테고리의 다른 글
[백준 2441][Swift] 별 찍기 - 4 (0) 2022.04.01 [백준 2440][Swift] 별 찍기 - 3 (0) 2022.04.01 [백준 2438][Swift] 별 찍기 - 1 (0) 2022.04.01 [백준 10818][Swift] 최소, 최대 (0) 2022.04.01 [백준 8393][Swift] 합 (0) 2022.04.01