小到大排3个数
main(){
int a,b,c,*p1,*p2,*p3;
printf("Input three Integers :\n");
scanf("%d%d%d",&a,&b,&c);
p1=&a;p2=&b;p3=&c;
swap(p1,p2);
swap(p1,p3);
swap(p2,p3);
printf("new digits : %d %d %d\n",a,b,c);
}
int swap(int *p,int *q)
{
int temp;
if(*p>*q)
temp=*p;*p=*q;*q=temp;
}