본문 바로가기
Algorithm/Beakjoon

[Java] baekjoon 1330 : 두 수 비교하기 / if문

by Amy97 2021. 7. 16.
728x90

문제 


https://www.acmicpc.net/problem/1330

 

1330번: 두 수 비교하기

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

www.acmicpc.net

해결 


자바 if문

1
2
3
if (조건식) {
    실행문; // 조건식이 true일 경우 실행
}
cs

조건식에는 true 또는 false 값을 산출할 수 있는 연산식이나 boolean 변수가 올 수 있다.

조건식이 true이면 블록을 실행하고 false이면 블록을 실행하지 않는다.

중괄호 { } 블록은 여러 개의 실행문을 하나로 묶기 위해 작성한다.

실행문이 하나밖에 없다면 생략 가능하다.

하지만 가독성과 버그 발생 방지를 위해 생략하지 않는 것을 추천한다.

구현 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.*;
 
public class Main {
 
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        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 if (a == b) {
            System.out.println("==");
        }
 
    }
}
cs

결과 


728x90

댓글