JAVA 判断奇偶 public static void main(String[] args) { int a = 9696; if ((a & 1) == 1) { System.err.println("奇数"); } else { System.err.println("偶数"); } }