-->
当前位置:首页 > 题库

单选题:After performing the following code fragment, what are the value

Luz5年前 (2021-05-10)题库656
After performing the following code fragment, what are the values of x and y:
```
x=3,y=2;
if(x>y)
x++;
y++;
```
@[C](1)

A. x=3,y=3
B. x=3,y=2
C. x=4,y=3
D. x=4,y=2




A.x=3,y=3
B.x=3,y=2
C.x=4,y=3
D.x=4,y=2


答案:C