那个只能用指针,因为那个值返回不了
#include <stdio.h>
void swap(int *m,int *n)
{
int temp;
temp=*m;
*m=*n;
*n=temp;
}
void main()
{
int a,b,c;
printf("Enter 3 integers n1,n2,n3:");
scanf("%d%d%d",&a,&b,&c);
if(a>b) swap(&a,&b);
if(b>c) swap(&b,&c);
if(a>b) swap(&a,&b);
printf("%d,%d,%d\n",a,b,c);
return 0;
}