Ruby 整数 to_r函数及示例
Ruby中的 to_r 函数将数字的值转换为有理数。
语法 :number.to_r
参数 : 该函数接收要转换为有理数的数字。
返回值 : 该函数返回有理数。
例子 #1 :
# Ruby program for to_r function
# Initializing the number
num1 = 51
num2 = 10.78
num3 = 1690.89
num4 = 183
# Prints the number as rational
puts num1.to_r
puts num2.to_r
puts num3.to_r
puts num4.to_r
输出:
51/1
6068600497881743/562949953421312
7436612865160643/4398046511104
183/1
例子#2 。
# Ruby program for to_r function
# Initializing the number
num1 = 312
num2 = 98.09
num3 = 190.23
num4 = 2.5
# Prints the number as rational
puts num1.to_r
puts num2.to_r
puts num3.to_r
puts num4.to_r
输出:
312/1
3451235058193531/35184372088832
6693123102458511/35184372088832
5/2