Computer Science, asked by bathinitopogula, 9 months ago

math.ceil(-9.01) =
math.floor(-9.01)=​

Answers

Answered by Buzz01
8

Math.ceil( 9.01): 10.0 // counts up (away from zero)

Math.ceil(-9.01): -9.0 // counts up (towards zero)

Math.floor( 9.01): 9.0 // counts down (towards zero)

Math.floor(-9.01): -10.0 // counts down (away from zero)

thanks for revision ;)

Answered by aditimoulik2001
2

math.ceil => -9

math.floor =>-10

Explanation:

Don’t hesitate to consult for doubt in the comments below and Don't forget to mark it the brainliest if it helps.. #BAL #answerwithquality

Its factual and property of the function

Similar questions