我尝试这样做的方式并不高效,或者我可以反转我的阵列。
public static void reverseArray(int[] array) throws IOException
{
int i = array.length - 1;
System.out.println("\nPrinting Reversed Array:");
while(i >= 0)
{
System.out.printf("%5d", array[i]);
i--;
if(i == 10 ||i == 20)
System.out.printf("\n");
}
}
答案 0 :(得分:1)
你应该做的
if(i%10==0){
System.out.printf("\n");
}