Computer Science, asked by ayushsarkar1947, 8 months ago

find output with process Mth.ceil(-100.99)

Answers

Answered by IamGenesis
1

Answer:

Math.ceil(-100.99) returns value -100

Math.ceil() returns the lowest integer which is greater than or equal to the integer passed in the argument.

Similar questions