Ruby 有理数 to_r()函数

Ruby 有理数 to_r()函数

to_r() 是Ruby中的一个内置函数,用来返回它自己的值。

语法 : rat.to_r()

参数 :该函数不接受任何参数

返回值 : 它返回自己的值。

例子 1 :

#Ruby program for to_r() method
  
#Initialize rational number
rat1 = Rational(18, -4)
  
#Prints the rational number
           puts rat1.to_r()

输出:

-9/2

例2 :

#Ruby program for to_r() method
  
#Initialize rational number
rat1 = Rational(7)
  
#Prints the rational number
           puts rat1.to_r()

输出:

7/1

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程