본문으로 바로가기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

백준알고리즘


https://www.acmicpc.net/problem/4504


import java.util.Scanner; public class Main { public static void main(String args[]) throws Exception { Scanner scan = new Scanner(System.in); int input = Integer.parseInt(scan.nextLine().trim()); while(true) { int data = Integer.parseInt(scan.nextLine().trim()); if(data == 0) break; if(data % input == 0) { System.out.println(data + " is a multiple of " + input + "."); } else { System.out.println(data + " is NOT a multiple of " + input + "."); } } scan.close(); } }