我需要反转一个数组,例如将点 5 中的内容移动到 0、4 到 1、3 到 2。
int size, length;
System.out.print("how big of a list do you have: ");
size=reader.nextInt();
length=size-1;
int [] array = new int [size];
for (int count=0; count < array.length; count ++){
System.out.println("enter a number: ");
array [count] = reader.nextInt();
}
for (int count=length; count > 0; count --)
array [(length-count)];
}
}
我在 Eclipse 中执行此操作,并且在最后一行中不断出现错误,说我没有使用运算符/表达式:array [(length-count)];
但我不知道为什么减号不起作用?或者如果我的程序可以正常工作,它没有通过构建部分。