有三个数abc,要求按大小顺序输出.请问用C语言怎么写?

问题描述:

有三个数abc,要求按大小顺序输出.请问用C语言怎么写?

void sort(int* a,int* b,int* c)
{
int t;
if (*a>*b)
t=*a,*a=*b,*b=t;
if (*b>*c)
{
t=*b,*b=*c,*c=t;
if (*a>*b)
t=*a,*a=*b,*b=t;
}
}