我刚上机运算了下,可以很负责任的说就是3.8
下面是我的验证程序:
#include
int main()
{
printf("%.2f\n",3.6-5/2+1.2+5%2);
return 0;
}
显示为3.80
算术混合运算时会将低类型(数据范围小的)转换为高类型的(数据范围大的).
main()
{
int s;
s=3.6-5/2+1.2+5%2;
printf("%d",s);
getch();
}
结果 3main()
{
float s;
s=3.6-5/2+1.2+5%2;
printf("%d\n",s);
getch();
}
结果 0
应该是答案错了。是3.8
答案错了
就算全int也是个3啊