我想顛倒數組元素。數組的大小是用戶定義的。任何人都可以修改這段代碼嗎?反向陣列的修改
public static void main(String[] args)
{
int[] list = new int[list.length];
int temp;
Scanner input= new Scanner(System.in);
System.out.print("Enter Size");
list = input.nextInt(); // I get an error message here
System.out.println("Now the reverse is:");
for (int i = 0; i < list.length - 1; i++)
{
for(int j = list.length - 1; i > 0; j--)
{
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
System.out.println(" " + list);
}
其實你的第一行是錯的 –