for(int i = n - 2; i>0; i--)//这里用n-2 好好看看冒泡
{
for(int m=0; m {
int t;
if(*p2>*(p2+1))
{
t=*p2;
*p2=*(p2+1);
*(p2+1)=t;
}
}
}