본문 바로가기

프로그래밍 문제/정올

134 : 반복제어문2 - 형성평가5

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int num = 0;
        int count_even = 0, count_odd = 0;
        
        for (int i=0; i<10; i++) {
            num = sc.nextInt();
            if ((num%2== 0)
                count_even++;
            else
                count_odd++;
        }
        
        System.out.println("even : " + count_even);
        System.out.println("odd : " + count_odd);
    }
}
cs