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


Ruby Numeric to_c()用法及代碼示例


to_c()是Ruby中的內置方法,返回帶num的複數。

用法: num.to_c()

參數:該函數需要返回的數字為複數。


返回值:返回複數。

例子1

# Ruby program for to_c() 
# method in Numeric 
  
# Initialize a number  
num1 = 10
  
# Prints the to_c 
puts num1.to_c()

輸出

10+0i

例子2

# Ruby program for to_c() 
# method in Numeric 
  
# Initialize a number  
num1 = Complex(19, -7) 
  
# Prints the to_c 
puts num1.to_c()

輸出

19-7i


相關用法


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