The increment operator is:增量运算符是:
查看答案
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体
If a loop does not contain within itself a way to terminate, it is called a(n)当一个循环的自身没有终止语句则称这个循环为?
A. while loopwhile循环
B. do-while loopdo-while循环
C. for loopfor循环
D. infinite loop死循环/无限循环