求最大数运行不出结果
#include<stdio.h>void main()
{
int x,y,z,s;
printf("please input three numbers:\n");
scanf("%d%d%d\n",&x,&y,&z);
s=x;
if(y>s)s=y;
if(z>s)s=z;
printf("s=%d\n",s);
}
请教一下,为什么没结果
2009-10-13 14:42
2009-10-13 14:52
2009-10-13 14:52
2009-10-13 16:33
2009-10-13 18:13
2009-10-13 19:48