这是我自己写的,在VC6.0下通过了,你看看吧:typedef DataType int;void swap(DataType &x,DataType &y){ DataType temp; temp=x;x=y;y=temp;}void reverser_order(DataType a[],int n){ int i=0; int j=n-1; while(i<=j) { swap(a[i],a[j]); i++; j--; }}