请教一个c语言问题
#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);
}
请教下这个程序有什么错误呢?谢谢,搞了半天搞不出来