如果我進入98意味着它會顯示6位。如何查找數組中某個特定數字的位置?
public class OddEven {
public static void main(String args[]) {
int[] numbers = new int[] { 14, 23, 67, 10, 76, 5, 98, 13, 110 };
for (int i = 0; i < numbers.length; i++) {
if(numbers[i]==14)
System.out.println(numbers[i]+"position 0");
else
System.out.println(numbers[i]+"no. not in the list");
}
}
}
請刪除javascript標記。 –
那麼,有什麼問題? –
只是返回我,你會有位置 – cralfaro