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
0
Answer:
4=6;
x=6+3;
x=9
y=6-4;
y =2
output
x =9
y =2
Similar questions
History,
2 months ago
Math,
2 months ago
Math,
2 months ago
CBSE BOARD X,
4 months ago
India Languages,
9 months ago
India Languages,
9 months ago