Algorithm/나머지 문제들

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

양선규 2023. 6. 26. 17:58
728x90
반응형

문제
입/출력

 

A와 B를 비교하여 비교결과를 출력하는 문제입니다.

 

A가 더 크면 ">" 를

B가 더 크면 "<" 를

두 수가 같다면 "=="를 출력해야 합니다.

 

 

import java.util.*;

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 {
            System.out.println("==");
        }
    }
}

 

if를 이용한 조건문 작성을 통해 문제를 해결하였습니다.

728x90
반응형