The value of the expression is ( ):(int)((double)9/2)-(9)%2
查看答案
If there is a definition statement:int x=10; Then the value of the expression x-=x+x is ( )
A. -20
B. -10
C. 10
There is a definition:int x=2; In the following expression whose value is not 6 is ( )
A. x*=x+1
B. x++,2*x
C. x*=(1+x)
D. 2*x,x+=2
The following C language expression that does not correctly represent the algebraic expression 2ab/(cd) is ( )
A. 2*a*b/c/d
B. a*b/c/d*2
C. a/c/d*b*2
D. 2*a*b/c*d
The following correct expression is ( )
A. x=y*5=x+z
B. int(15.8%5)
C. x=y+z+5,++y
D. x=25%5.0