Computer Science, asked by msakrish1409, 10 months ago

evaluate the following function And the output.
X= -37.9
print (maths cell (x ))​

Answers

Answered by avinashmurmu99311
0

Explanation:

question is wrong it will be Math.ceil(),

Answered by Anonymous
1

The following function is not maths cell(x).

  • It is math.ceil(x). This function rounds a number to next largest value in the argument.
  • We use this function as java.lang.Math.ceil() this returns double value.
  • If the argument range is less than zero but greater than -1.0 then result is negative zero.

math.ceil(-37.9) = -37

Similar questions