Ruby 数值 numerator()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程