C语言表达式的值怎么求,要过程
一,a=10,b5.5,c=31,int(a/c)+a/4+b*c2,(a%c)-int(a%b)-(int)a%b二,设a=true,b=true,c=false,d=...
一,a=10,b5.5,c=3 1,int(a/c)+a/4+b*c 2,(a%c)-int(a%b)-(int)a%b 二,设a=true,b=true,c=false,d=3,e=2.5 1,a&&(b∥!c); 2,!(a&&(d==int(e))&&(e/0.5)==5 怎么求,要过程可以的讲详细点
展开
1个回答
展开全部
一,a=10,b=5.5,c=3
1,int(a/c)+a/4+b*c
=> (10/3)+10/4+5.5*3 (这儿不需要int,整数相除是整数)
=> 3+2+16.5
=> 21.5
2,(a%c)-int(a%b)-(int)a%b
=>(10%3)-int(10%5.5)-(int)10%5.5
这个不符合C语言要求,%运算二边必须是整数。
二,设a=true,b=true,c=false,d=3,e=2.5
1,a&&(b||!c);
=> true && (true || true)
=> true
2,!(a&&(d==int(e))&&(e/0.5)==5 <=少右括号
如果:!(a&&(d==int(e)))&&(e/0.5)==5
=> !(true && (3==2)) && (2.5/0.5)==5
=> ! false && 5==5
=> true && true
1,int(a/c)+a/4+b*c
=> (10/3)+10/4+5.5*3 (这儿不需要int,整数相除是整数)
=> 3+2+16.5
=> 21.5
2,(a%c)-int(a%b)-(int)a%b
=>(10%3)-int(10%5.5)-(int)10%5.5
这个不符合C语言要求,%运算二边必须是整数。
二,设a=true,b=true,c=false,d=3,e=2.5
1,a&&(b||!c);
=> true && (true || true)
=> true
2,!(a&&(d==int(e))&&(e/0.5)==5 <=少右括号
如果:!(a&&(d==int(e)))&&(e/0.5)==5
=> !(true && (3==2)) && (2.5/0.5)==5
=> ! false && 5==5
=> true && true
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询