Q8. What will be the output on console after the following
two java print statements are executed (you may need a
calculator)
System.out.print("(10.5+2*3)/(45 – 3.5) = ");
System.out.println((10.5+2* 3)/(45 - 3.5));
Answers
Answered by
1
Answer:
The result is:
(10.5+2*3)/(45 – 3.5) = 16.5
Similar questions