[백준] - 단계별로 풀어보기(조건문) 1330

김민경·2022년 4월 2일
0

백준

목록 보기
1/39

백준 1330번

두 수 비교하기

문제 출처 https://www.acmicpc.net/problem/1330


내가 작성한 코드

import java.util.Scanner;

public class Main {

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

0개의 댓글

관련 채용 정보