运用指针#includevoid sort3(int *p1, int *p2, int *p3){ if (*p1>*p2){ int temp=*p1; *p1=*p2; *p2=temp; }if (*p1>*p3) { int temp=*p1; *p1=*p3; *p3=temp; }if (*p2>*p3) { int temp=*p2; *p2=*p3; *p3=temp; }}int main(){ int a,b,c; scanf(&am...