if(!(year%2==0)) 即 if(year%2 !=0),所以条件不成立,执行else。year%2即模2(除2取余数),等于00==0返回true!true返回false故整个表达式为falseyear/10返回204204==0返回false故整个表达式为false