若有定义:int x=3,y=2,float a=2.5,b=3.5;则下面表达式的值为多少?

2024-11-25 02:31:08
推荐回答(2个)
回答1:

(x+y)%2+(int)a/(int)b
=(3+2)%2+(int)2.5/(int)3.5
=5%2+2/3
=1+0
=1

回答2:

1貌似是,你可以试试