请高手帮忙找下错误!!
#include<stdio.h>int main()
{ void exchange(int *q1,int *q2,int *q3);
int a,b,c;
int *p1,*P2,*p3;
printf("please enter three numbers:");
scanf("%d%d%d",&a,&b,&c);
p1=&a;
p2=&b;
p3=&c;
exchange(p1,p2,p3);
printf("The order is:%d,%d,%d\n",a,b,c);
return 0;
}
void exchange(int *q1,int *q2,int *q3)
{ void swap(int *m,int *n);
if(*q1<*q2)
{swap(q1,q2);}
if(*q1<*q3)
{swap(q1,q3);}
if(*q2<*q3)
{swap(q2,q3);}
}
void swap(int *m,int *n)
{ int x;
x=*m;
*m=*n;
*n=x;
}