Login
Remember
Register
Ask a Question
What will be the output of Round(3.7) and Ceil(3.7) in Java?
+2
votes
asked
May 31, 2020
in
JAVA
by
SakshiSharma
What will be the output of Round(3.7) and Ceil(3.7) in Java?
#java-round
#java-ceil
3
7
Java-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 31, 2020
by
Robindeniel
Round(3.7) returns 4 and Ceil(3.7) returns 4.
...