VOOZH about

URL: https://www.geeksforgeeks.org/ruby/ruby-float-floor-method-with-example/

⇱ Ruby Float floor() method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Ruby Float floor() method with example

Last Updated : 8 Jan, 2020
floor() is a float class method which return the floor value of the passed float value.
Syntax: float.floor() Parameter: float value which is to get its floor value decimal digits (default = 0) Return: smallest number >= to float with a ndigits decimal point precision. For -ve precision : Integer with at least ndigits.abs trailing zeros. For +ve precision : Floating point number.
Example #1: Output :
floor value of a : -57

floor value of b : 56

floor value of c : 222
Example #2: Output :
floor value of a : -1

floor value of b : -49973

floor value of c : 311
Comment
Article Tags: