Write a word or phrase that is similar in meaning to the underlined part.
查看答案
The increment operator is:增量运算符是:
A. ++
B. --
C. *=
D. -=
What will be the values of x and y as a result of the following code?通过以下的代码得出x、y的值是多少?int x = 25, y = 8;x += y++;
A. x = 25, y = 8
B. x = 33, y = 8
C. x = 33, y = 9
D. x = 34, y = 9
What will be the value of x after the following code is executed?执行以下代码所得出的x值为多少?int x, y = 4, z = 6;x = (y++) * (++z);
A. 24
B. 28
C. 30
D. 35
This is a control structure that causes a statement or group of statements to repeat.以下哪个控制结构会导致语句或语句组重复?
A. Block 块
B. Loop循环
C. Prefix mode 前缀模式
D. Body体