use java Return the number of even ints in the given array. Note: the % "mod" operator computes the remainder, e.g. 5 % 2 is 1. countEvens([2, 1, 2, 3, 4]) → 3 countEvens([2, 2, 0]) → 3 countEvens([1, 3, 5]) → 0
时间: 2023-11-26 11:02:59 浏览: 98
用java求两数之和
可以使用以下代码来实现:
```java
public int countEvens(int[] nums) {
int count = 0;
for (int i = 0; i < nums.length; i++) {
if (nums[i] % 2 == 0) {
count++;
}
}
return count;
}
```
该方法遍历整个数组,如果当前数字是偶数,则将计数器加1。最后返回计数器的值即为偶数个数。
阅读全文