Computer Science, asked by CHRISWEL, 4 months ago

Give the output of the following program:

a) int x=6, y=4;

System.out.print(x+""+y);

y=x;

x=x+3;

y=x-y;

System.out.print(x+""+y);​

Answers

Answered by mohamedakram7220
0

Answer:

4=6;

x=6+3;

x=9

y=6-4;

y =2

output

x =9

y =2

Similar questions