공부하기/백준

[Java] 백준 풀기 10480 - Oddities

XEV 2023. 4. 11. 23:46

자바 백준 10480번

브론즈 4

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

 

10480번: Oddities

Some numbers are just, well, odd. For example, the number 3 is odd, because it is not a multiple of two. Numbers that are a multiple of two are not odd, they are even. More precisely, if a number n can be expressed as n = 2 ∗ k for some integer k, then n

www.acmicpc.net

 

 

 

 

 

문제 보기

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

 

 

 

 

 

문제 풀기

주어진 테스트 케이스 개수만큼 for loop 를 돌리면서 입력되는 각각의 수에 대해 나머지 연산을 실행한다.

2로 나눈 나머지가 0 일 경우 "even" 에 대한 글귀로 결과를 출력하고, 그렇지 않으면 "odd" 에 대한 글귀로 결과를 출력한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        
        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        
        for (int i = 0; i < testCase; i++) {
            int testNum = sc.nextInt();
            if (testNum % 2 == 0) {
                System.out.println(testNum + " is even");
            }
            else {
                System.out.println(testNum + " is odd");
            }
        }

    }
}