#Integer 하나 받아오기
let n = Int(readLine()!)!
#String 여러번 반복하기
for i in 1...n{
let stars = String(repeating:"*", count:i)
print(stars)
}
String 반복 방법 tutorial
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
[백준] 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 |