Computer Science, asked by wwwmrigapabarman, 6 months ago

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 bharadwajbb
0

Answer:

231

8

Explanation:

floor gives 230

ceil gives 231

max gives 231

round gives 64

cbrt gives 8

Similar questions