我正在寻找在数组中找到负数的解决方案,我从搜索中想出了类似这段代码的东西。
public static void main(String args[]){
int arrayNumbers[] = { 3, 4, 7, -3, -2};
for (int i = 0; i <= arrayNumbers.length; i++){
int negativeCount = 0;
if (arrayNumbers[i] >= 0){
negativeCount++;
}
System.out.println(negativeCount);
}
}
我想知道是否有更简单或更短的方法来查找数组中的负数与上面的代码?