공부하기/백준

[Java] 백준 풀기 15025 - Judging Moose

XEV 2023. 4. 1. 23:36

자바 백준 15025번

브론즈 4

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

 

15025번: Judging Moose

When determining the age of a bull moose, the number of tines (sharp points), extending from the main antlers, can be used. An older bull moose tends to have more tines than a younger moose. However, just counting the number of tines can be misleading, as

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 수학, 구현

 

 

 

 

 

문제 풀기

주어지는 두 수가 0 0 이면 "Not a moose" 를 출력한다.

첫번째 조건과 달리 두 수가 같으면 "Even" 으로 표시하고  두 수의 합을 출력한다.

두 수가 모두 다르면 "Odd" 로 표시한 후 큰 수를 기준으로 하여 2 배 값을 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
    
        Scanner sc = new Scanner(System.in);
        
        int L = sc.nextInt();
        int R = sc.nextInt();
        
        if (L == 0 && R == 0) {
            System.out.print("Not a moose");
        }
        else if (L == R) {
            System.out.print("Even " + (L + R));
        }
        else if (L != R) {
            if (L > R) {
                System.out.print("Odd " + (L + L));
            }
            else if (L < R) {
                System.out.print("Odd " + (R + R));
            }
        }
        
    }
}