알고리즘

[백준 2438][Swift] 별 찍기 - 1

moving 2022. 4. 1. 15:24
728x90

 

 

코드

let input = Int(readLine()!)!
for i in 1...input {
    for _ in 1...i {
        print("*", terminator: "")
    }
    print("")
}

 

 

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

 

2438번: 별 찍기 - 1

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

www.acmicpc.net