공부하기/백준

[Java] 백준 풀기 21612 - Boiling Water

XEV 2023. 3. 19. 23:53

자바 백준 21612번

브론즈 4

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

 

21612번: Boiling Water

At sea level, atmospheric pressure is 100 kPa and water begins to boil at 100◦C. As you go above sea level, atmospheric pressure decreases, and water boils at lower temperatures. As you go below sea level, atmospheric pressure increases, and water boils

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 수학, 구현, 사칙연산

 

 

 

 

 

문제 풀기

입력 받은 숫자를 주어진 식에 대입하여 사칙연산을 시행한다.

그 결과값을 출력하고 결과에 대한 분류를 하여 -1, 0, 1 을 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);
        
        int b = sc.nextInt();
        int result = (5 * b) - 400;
        System.out.println(result);
        if (result == 100) {
            System.out.print("0");
        }
        else if (result < 100) {
            System.out.print("1");
        }
        else if (result > 100) {
            System.out.print("-1");
        }

    }
}