用循环把数组两端的数据转换过来。代码如下:
- public class Reverse {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int[] array={1,2,3,4,5,6};
- for (int i : array) {
- System.out.println(i);
- }
- reverse(array);
- for (int i : array) {
- System.out.println(i);
- }
- }
- //转换的方法
- public static void reverse(int[] array)
- {
- //用for循环把数组两端的数据逐进行交换
- for(int i=0;i<array.length/2;i++)
- {
- int temp=array[i];
- array[i]=array[array.length-1-i];
- array[array.length-1-i]=temp;
-
- }
- }
- }
复制代码 |