https://www.acmicpc.net/problem/25314
풀이
더보기
이거 코틀린은 반복문 쓸 필요도 없슴....
repeat(int n) 쓰면 n 만큼 반복해줌..
import java.util.Scanner
fun main(args: Array<String>) {
question25314()
}
fun question25314() {
var sc = Scanner(System.`in`)
var byte = sc.nextInt()
println("${"long ".repeat(byte/4)}int")
}
반응형
'스터디(beakjoon)' 카테고리의 다른 글
Kotlin] 백준 11021번 문제 풀이 (0) | 2023.04.16 |
---|---|
Kotlin] 백준 15552번 문제 풀이 (0) | 2023.04.14 |
Kotlin] 백준 25304번 문제 풀이 (0) | 2023.04.13 |
Kotlin] 백준 8393번 문제 풀이 (0) | 2023.04.13 |
Kotlin] 백준 10950번 문제 풀이 (0) | 2023.04.11 |