再帰を使用して配列の最初の整数よりも少ない数のカウントを取得する必要があります。再帰を使用して配列からカウントを取得
public static int countGreaterThanFirst(int[]
numbers, int startIndex, int endIndex, int firstNumber){}
私はループやグローバル/静的変数を使用することは想定されていません。上記の2つの条件を満たすために、以下の実装をどのように変換できますか。私は最近、another同様の質問をしましたが、これはカウント変数を追跡する必要があるために少し異なります。誰かが助けることができれば、私は本当に感謝します。 以下は私のループでの実装です。
public static int countGreaterThanFirst(int[] numbers, int startIndex, int endIndex, int firstNumber) {
int greater_than_first = 0;
for (int count = startIndex; count <= endIndex; count++) {
if (numbers[count] > firstNumber) {
greater_than_first++;
}
}
return greater_than_first;
}
これはうまくいくはずですが、それは期待される実装ではありません。 –