c语言中的int整型的范围是-32768~32767之间吗?为什么这个程序结果不对,求高手解答
#include<stdio.h>voidmain(){inta,b,c,d;intmax(intx,inty,intz);printf("pleaseinputthre...
#include<stdio.h>
void main()
{
int a,b,c,d;
int max(int x,int y,int z);
printf("please input three integernumber!\n");
scanf("%d,%d,%d",&a,&b,&c);
d=max(a,b,c);
printf("the bigest number is:%d\n",d);
}
int max(int x,int y,int z)
{
int s;
if(x>y&&x>z)
s=x;
else if(y>x&&y>z)
s=y;
else
s=z;
return(s);
}
之后,我输入
是怎么回事啊?高手帮帮忙~~~ 展开
void main()
{
int a,b,c,d;
int max(int x,int y,int z);
printf("please input three integernumber!\n");
scanf("%d,%d,%d",&a,&b,&c);
d=max(a,b,c);
printf("the bigest number is:%d\n",d);
}
int max(int x,int y,int z)
{
int s;
if(x>y&&x>z)
s=x;
else if(y>x&&y>z)
s=y;
else
s=z;
return(s);
}
之后,我输入
是怎么回事啊?高手帮帮忙~~~ 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询