Computer Science, asked by jjenreeeiejnwnw, 5 hours ago

What is the value of Math.round(Math.max(8.8, 7))​

Answers

Answered by Anonymous
0

Answer:

8.0

Explanation:

Math.round(Math.max(8.8, 7))

Math.round(8.8) //as 8 is greater

Round of 8.8 is 8.0(double data type)

Similar questions