두 수 비교하기

김나영·2023년 6월 14일
0

알고리즘

목록 보기
8/16

두 수 비교하기

풀이

Scanner sc = new Scanner(System.in);
  • 값을 입력받기 위해 Scanner 사용
int A = sc.nextInt();
int B = sc.nextInt();
  • A,B는 정수이므로 int
  • 값을 받아오는 sc.nextInt() 사용

전체 코드

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        if(A > B) {
            System.out.println(">");
        } else if (A < B) {
            System.out.println("<");
        } else {
            System.out.println("==");
        }
    }
}
  • if문을 사용하여 조건식을 만듦

  • A > B => " > "

  • A < B => " < "

  • 그 외의 경우의 수는 " 같다 " 밖에 없으므로 else 사용

0개의 댓글