这个程序用DEV c++编写的程序输入值后怎么运行不了结果
为什么我运行后输入值但是却运行不了 #include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int a, b, c;
int t;
printf("请输入三个整数(中间以空格分开)");
scanf("%d %d %d,&a,&b,&c");
if(a < b)
{
t = a;
a = b;
b = t;
}
if(a < c)
{
t = a;
a = c;
c = t;
}
if(b < c)
{
t = b;
b = c;
c = t;
}
printf("%d %d %d\n",a,b,c);
return 0;
}