Ruby 数值 numerator()函数
numerator() 是Ruby中一个内置的方法,用于返回分母。
语法 :num.numerator()
参数 :该函数需要一个要检查的数字。
返回值 :它返回自身或nil。
例子 1 :
# Ruby program for numerator()
# method in Numeric
# Initialize a number
num1 = 3.5
# Prints the numerator
puts num1.numerator()
输出:
12
例2 :
# Ruby program for numerator()
# method in Numeric
# Initialize a number
num1 = 1.5
# Prints the numerator
puts num1.numerator()
输出:
3