Computer Science, asked by amaze04, 7 months ago

Predict the output of following code
1
int a=30 b=50;
a=a+b;
b=a-b;
a=a-b;
System.out.println(a+", "+b);
50,30
30,50
80,-20
None of these​

Answers

Answered by nitishjamwal88695
1

Answer:

50,30

Explanation:

that's a real answer

Answered by prince818
0

Answer:

run the java program and do this program

Similar questions