📜  红宝石 |数值 rect()函数

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

红宝石 |数值 rect()函数

rect()是 Ruby 中的一个内置方法,它返回一个由实数和虚数组成的数组。

示例 1

# Ruby program for rect()
# method in Numeric
  
# Initialize a number 
num = Complex(10, 6)
  
# Prints the rect part
puts num.rect()

输出

10
6

示例 2

# Ruby program for rect()
# method in Numeric
  
# Initialize a number 
num = Complex(18, 16)
  
# Prints the rect part
puts num.rect()

输出

18
16