void reverse(int *pint,int len) { int temp; for(int i=0;i{ temp=pint[i]; pint[i]=pint[len-1-i]; pint[len-1-i]=temp; } }
不懂!会算的帮帮忙了!到时我也长点知识