c语言 找错
#include<stdio.h>void main()
{
int a,b,c,temp;
printf("please input three numbers: ");
scanf("%d%d%d",&a,&b,&c);
if (a>b)
{
temp=a;
a=b;
b=temp;
}
if (a>c)
{
temp=a;
a=c;
c=temp;
}
if (b>c)
{
temp=b;
b=c;
c=temp;
}
printf("%d %d %d \n",a,b,c );
getch();
}
这有什么错误吗? 没错误怎么也没提示啊 郁闷啊