配列で負の数を見つけるための解決策を探していましたが、検索からこのコードのようなものを思いつきました。
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);
}
}
上記のコードと比較して、配列内の負の数を見つけるためのより簡単または短い方法があるのではないかと思っていましたか?