what will be the output value : if a = 230.13 and b = 230.13, c = 64.34 System.out.println( Math.max(Math.floor(a),Math.ceil(b))); System.out.println(Math.cbrt(math.round(c)));
Answers
Answered by
0
Answer:
231
8
Explanation:
floor gives 230
ceil gives 231
max gives 231
round gives 64
cbrt gives 8
Similar questions