如何顯示數組中的負數的數量?如何顯示數組中的負數的數量?
這是我到目前爲止有:
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);
}
}
}
我認爲他正在檢查正數 – freebird
@freebird我沒有注意到這一點,感謝您指出這一點:) – shinkou