본문 바로가기
코딩테스트/백준

2438-별 찍기 - 1

by GGShin 2022. 1. 26.

#Integer 하나 받아오기

let n = Int(readLine()!)!

 

#String 여러번 반복하기
for i in 1...n{
    let stars = String(repeating:"*", count:i)
    print(stars)
}

 

String 반복 방법 tutorial

https://reactgo.com/swift-repeat-string/#:~:text=To%20repeat%20a%20string%20n%20number%20of%20times%2C%20we%20can,need%20to%20repeat%20that%20string.

반응형

'코딩테스트 > 백준' 카테고리의 다른 글

[백준] 4673셀프넘버-Java  (2) 2022.05.11
[Swift] 1712 손익분기점  (0) 2022.02.09
11021-A+B-7  (0) 2022.01.26
2739-구구단  (0) 2022.01.26