최대 1 분 소요

[백준 1330번] 두 수 비교하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package _1월_2주차;
 
import java.util.Scanner;
public class 백준_손수경_정답_1330 {
 
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int a, b;
        a = sc.nextInt();
        b = sc.nextInt();
        if (a < b) {
            System.out.println("<");
        }
        else if (a > b) {
            System.out.println(">");
        }
        else {
            System.out.println("==");
        }
    }
 
}
cs


댓글남기기