andy6804tw
8/7/2016 - 6:50 AM

http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=23932 這題不要想太多直接全部加起來判斷是否為偶數

http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=23932

這題不要想太多直接全部加起來判斷是否為偶數

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner scn = new Scanner(System.in);
			int n=scn.nextInt(),tot=0;
			for(int i=0;i<n;i++)
				tot+=scn.nextInt();
			if(tot%2==0)
				System.out.println("YES");
			else
				System.out.println("NO");
	}
	/* 
    題目:[C_GD02-難] Busy day
    作者:1010
    時間:西元 2016 年 8 月 */
}