当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Float to_r()用法及代码示例


浮点数to_r()是一个浮点类方法,它返回浮点值的有理形式。

用法:float.to_r()

参数:浮点值作为参数


返回:浮点值的有理形式表示。

范例1:

# Ruby code for to_r() method 
  
# Initializing values 
a = 2.0
b = 9.99991
  
# Printing result 
puts "Rational form of a:#{a.to_r}\n\n"
puts "Rational Form of b:#{b.to_r}\n\n"

输出:

Rational form of a:2/1

Rational Form of b:21990034643427/2199023255552

范例2:

# Ruby code for to_r() method 
  
# Initializing value 
a = 0.767
b = 2797999.011
  
# Printing result 
puts "Rational form of a:#{a.to_r}\n\n"
puts "Rational Form of b:#{b.to_r}\n\n"

输出:

Rational form of a:6908521828386341/9007199254740992

Rational Form of b:375541070202667/134217728



相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby Float to_r() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。