的問題是:發現在Java陣列更大數目
- 在陣列
- 返回包含更大的值,而不是索引值的索引數算出更大的數字。
代碼
public class temp02 {
public static void consoledisplay(int [] array){
for (int a = 0; a < array.length; a++)
System.out.println("Value of array index "+a+" is "+array[a]);
System.out.println("");
}
public static int [] higherNumbers(int[] array, int numbers){
// needed codes here
return array;
}
public static void main (String[] args) {
int [] x = new int[10];
x[0] = 55;
x[1] = 27;
x[2] = 23;
x[3] = 22;
x[4] = 55;
x[5] = 56;
x[6] = 33;
x[7] = 21;
x[8] = 21;
x[9] = 99;
consoledisplay(x);
x = higherNumbers(x,4);
consoledisplay(x);
}
}
電流輸出
值數組索引0的是55
值數組索引1的是27
值數組索引2的是23
數組索引3的值是22
值數組索引4的是55
值數組索引5的是數組索引6的56
值爲33
值數組索引7的是21
值數組索引8的是21
值數組索引的圖9是99
值數組索引0的是55
值數組索引1的是27
值數組索引2的是23
值數組索引3的是22
數組索引4的值是55
值數組索引5的是數組索引6的56
值是33
值數組索引7的是21
值數組索引8的是21
值數組索引9的是99
目標產出
數組索引0的值是55
值數組索引1的是27
值數組索引2的是23
值數組索引3的是22
值數組索引4的是55
值數組索引5的是數組索引6的56
值爲33
值數組索引的圖7是21
值數組索引8的是21
值數組索引9的是99
值數組索引0的是9
值數組索引1的是5
值數組索引的2 0
數值數組索引3的是4
有什麼問題嗎? –
似乎對我有些功課......你不應該自己解決嗎? – noone
我不再上學。它實際上是我個人項目的一部分。我已經炸了我的大腦。 –