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
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer succ()用法及代码示例
- Ruby Integer truncate()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer to_r function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。