填空题 写出下列代码段中表达式的值:
(1)double x=2.5, y=4.7;
int a=7;
x+a%3*(int)(x+y)%2/4; //表达式的值为 1
(2)int a,b;
a=2,b=5,a++,b++,a+b; //表达式的值为 2
【正确答案】
【答案解析】2.5、9