[백준] 배수 찾기 (4504)(kotlin)

문제 설명

백준 4504번 문제 링크

입력 및 출력

» 입력

첫째 줄에 n이 주어진다. 다음 줄부터 한 줄에 한 개씩 목록에 들어있는 수가 주어진다. 이 수는 0보다 크고, 10,000보다 작다. 목록은 0으로 끝난다.

» 출력

목록에 있는 수가 n의 배수인지 아닌지를 구한 뒤 예제 출력처럼 출력한다.

예제 입출력(테스트케이스)

입력 출력
3
1
7
99
321
777
0
1 is NOT a multiple of 3.
7 is NOT a multiple of 3.
99 is a multiple of 3.
321 is a multiple of 3.
777 is a multiple of 3.

문제 풀이1

import java.io.BufferedReader
import java.io.InputStreamReader

fun main(args: Array<String>) = with(BufferedReader(InputStreamReader(System.`in`))) {
    val n = readLine().toInt()

    while (true) {
        val target = readLine().toInt()
        if (target == 0) break

        println(
            when (target % n) {
                0 -> "$target is a multiple of $n."
                else -> "$target is NOT a multiple of $n."
            }
        )
    }
}