#include <stdio.h>
void swap(int *p,int *q);
void exchange(int *p1,int *p2,int *p3);
int main()
{
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
exchange(&a,&b,&c);
printf("The sorted numbers:\n");
printf("%d>%d>%d",a,b,c);
return 0;
}
void swap(int *p,int *q)
{
int tem;
tem=*p;
*p=*q;
*q=tem;
}
void exchange(int *p1,int *p2,int *p3)
{
if(*p1<*p2)
swap(p1,p2);
if(*p1<*p3)
swap(p1,p3);
if(*p2<*p3)
swap(p2,p3);
}
相关文章
- 11-04指针 比较三个数字大小,并且排序