write down the syntax and an example of following Round()
Answers
Answered by
0
Answer:
round() is a method under math package. It is used to find the round value of a given number.
Syntax of round() in different languages:
In Java:
Math.round(data);
In Python:
math.round(data)
In C/C++:
round(data);
In GoLang:
math.Round(data);
In Ruby:
Math.round(data)
Similar questions