以下是必需的程序。
public class Tester { public static void main(String args[]) { int a[] = { 11, 22, 55, 66, 31, 24 }; System.out.println("奇数:"); for (int i = 0; i < a.length; i++) { if (a[i] % 2 != 0) { System.out.println(a[i]); } } System.out.println("偶数:"); for (int i = 0; i < a.length; i++) { if (a[i] % 2 == 0) { System.out.println(a[i]); } } } }
输出结果
奇数: 11 55 31 偶数: 22 66 24