java定义一个整数数组,求出其中的奇数和偶数个数。我是初学者,求代码和步骤解释,一定好评

2024-11-16 22:34:58
推荐回答(3个)
回答1:

public class ArrTest {
public static void main(String[] args) {
int[] arr = new int[]{1,2,3,4,5,6,7,8,9,10,12,14,13};
int m = 0;//记录偶数出现的次数
int n = 0;//记录奇数出现的次数
for(int i = 0; i < arr.length; i++){
if(arr[i]%2==0){
m++;
}else{
n++;
}
}
System.out.println("偶数出现的次数:"+m);
System.out.println("奇数出现的次数:"+n);
}
}
这个应该好懂吧

回答2:

用IF或者遍历……

回答3:

public class ArrTest