본문 바로가기

프로그래밍 문제/정올

141 : 반복제어문3 - 형성평가2

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.Scanner;
 
public class Main {
    public static void main (String[] arg) {
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int mul = 1;;
 
        while (true) {
            if (((num*mul)%10== 0) {
                System.out.print(num*mul + " ");
                break;
            }
            else if (100 <= (num*mul)) {
                break;
            }
 
            System.out.print(num*mul + " ");
            mul++;
        }
    }
}
cs