Computer Science, asked by anitapattnaik, 7 months ago

Find the output.
Math. Round (-0.6) in JAVA​

Answers

Answered by reshmasurin6
1

Answer:

java script :math.round

Explanation:

console.log(Math.round(0.9));

// expected output: 1

console.log(Math.round(5.95), Math.round(5.5), Math.round(5.05));

// expected output: 6 6 5

console.log(Math.round(-5.05), Math.round(-5.5), Math.round(-5.95));

// expected output: -5 -5 -6

Similar questions