Computer Science, asked by vahidamulla192, 8 months ago

12. What will be the value stored in B?
double B = Math.min( Math.ceil(-62.52), Math.abs(-62.52));*
(1 Point)​

Answers

Answered by akbarhussain26
0

Answer:

The function Math.max() does not work like that. It takes two (or more) integers and then returns the greater one. For example:

Math.max(3, 1, 2); // returns 3

Similar questions