當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer 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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer to_r function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。