Computer Science, asked by nadiasheikh, 7 months ago

find the value of c:c= math.floor(18.9)​

Answers

Answered by anindyaadhikari13
1

Question:-

Find the value of c.

Solution:-

c=Math.floor(18.9)

Math.floor() is used to return the largest double value that is less than or equal to the argument.

So,

c=18.0

Hence, the value of c is 18.0

Similar questions