Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

Hennie

[백준] 1330번 : 두 수 비교하기 (JAVA) 본문

BaekJoon/02. if문

[백준] 1330번 : 두 수 비교하기 (JAVA)

헨니 2021. 4. 12. 17:08

 

아주 간단한 if문을 사용하는 문제!

 

QUESTION

www.acmicpc.net/problem/1330

 

1330번: 두 수 비교하기

두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오.

www.acmicpc.net

 

ANSWER

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		if(a > b) {
			System.out.println(">");
		} else if(a < b) {
			System.out.println("<");
		} else if(a == b) {
			System.out.println("==");
		}
	}
}

 

RESULT