max函数里你根本没有对*p1和*p2作比较,应该这样写:int max(int *p1,int *p2){ if(*p1>*p2)return *p1;else return *p2;} 另外,main函数中的 if(a>b)max(p1,p2);删掉,因为根本没用。