반응형
소스코드
fun main(args: Array<String>) {
val n = readLine()!!.trim().toInt()
val sb = StringBuilder()
for (idx in 1 .. 10) {
sb.append("$n x $idx = ${n * idx}").append("\n")
}
println(sb)
}
반응형
'프로그래밍 언어 > 코틀린(Kotline)' 카테고리의 다른 글
[Kotlin] Day 3: Intro to Conditional Statements (HackerRank - 30 Days of Code) (0) | 2023.03.06 |
---|---|
[Kotlin] Day 2: Opterators (HackerRank - 30 Days of Code) (0) | 2023.03.06 |
[Kotlin] Day 0: Hello, World. (HackerRank - 30 Days of Code) (0) | 2023.03.04 |
코틀린(Kotlin) 진법 변환 .toInt() (0) | 2023.02.27 |