輸入若干個整數,輸入0表示結束,計算其中的偶數個數與奇數個數
注意:變數初始值請預設為0,如 int a = 0, even, odd; even = odd = 0;
2 4 6 8 1 3 5 7 9 0
偶數:4個 奇數:5個