新手来问一个简单的程序
用指针的方法,输入3个整数,按由小到大的顺序输出
#include <stdio.h>
void s(int *pa,int *pb)
{
int temp;
temp = *pa;
*pa = *pb;
*pb = temp;
}
void main()
{
int a,b,c,temp;
scanf("%d%d%d",&a,&b,&c);
if(a>b)
s(&a,&b);
if(b>c)
s(&b,&c);
if(a>c)
s(&a,&c);
printf("%d,%d,%d",a,b,c);
}