Computer Science, asked by javidahmadj4641, 2 months ago

write down the syntax and an example of following Round()

Answers

Answered by imtiyazallam
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