📜  红宝石 |有理 to_r()函数

📅  最后修改于: 2022-05-13 01:55:31.774000             🧑  作者: Mango

红宝石 |有理 to_r()函数

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

示例 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