predict the output of the following math.floor(-5.29)
Answers
Answered by
0
Answer:
-6
Explanation:
floor means round off to the smaller no
in java
Answered by
1
Question:-
Predict the output of the following code segment.
Answer:-
Math.floor(-5.29)
= -6
Note:- Math.floor() is used to return the lower integer for the given argument.
Similar questions