首先两个数组的长度要一样交换才有意义,循环遍历数组inttemp;//数组是什么类型temp就定义什么类型for(inti=0;ii++){temp=ary1[i];ary1[i]=ary2[i];ary2[i]=temp;}