📜  红宝石 |数字 to_c()函数

📅  最后修改于: 2022-05-13 01:55:39.012000             🧑  作者: Mango

红宝石 |数字 to_c()函数

to_c()是 Ruby 中的一个内置方法,它返回一个带有 num 的复数。

示例 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