본문 바로가기

프로그래밍/자바

[자바] 정올 126 : 반복제어문1 - 형성평가2

728x90
반응형
SMALL
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int even = 0;
        int odd = 0;
        int i;
        while(true){
            i = sc.nextInt();
            if(i==0) break;

            if(i % 2 == 0) even++;
            else odd++;
        }
        System.out.println("odd : " + odd);
        System.out.println("even : " + even);
    }
}
728x90
반응형
LIST