Computer Applications

Explain the following Math functions in Java:

Math.ceil()

Java Math Lib Methods

3 Likes

Answer

Returns the smallest double value that is greater than or equal to the argument and is equal to a mathematical integer. For example, Math.ceil(65.5) will return 66.0.

Answered By

2 Likes


Related Questions