单选题:After performing the following code fragment, what are the value
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
```
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