Computer Science, asked by sanjeevkanchanmishra, 5 months ago

Write down the synyax 1) To find the floor value of c​

Answers

Answered by anindyaadhikari13
1

Question:-

  • Write down the syntax to find the floor value of c in Java.

Answer:-

To find floor value of a variable, we use Math.floor() function.

To find floor value of c, the Java expression will be,

Math.floor(c);

Note:-Math.floor() function is used to return the lower integer for the given argument.

Similar questions