下面程序的输出结果是什么?( )
class Output {
public static void main(String args[]) {
int arr[] = {1, 2, 3, 4, 5};
for (int i = 0; i < arr.length - 2; ++i)
System.out.println(arr[i] + " ");
}
}1 2
1 2 3
1 2 3 4
1 2 3 4 5
下面程序的输出结果是什么?( )
class Output {
public static void main(String args[]) {
int arr[] = {1, 2, 3, 4, 5};
for (int i = 0; i < arr.length - 2; ++i)
System.out.println(arr[i] + " ");
}
}1 2
1 2 3
1 2 3 4
1 2 3 4 5