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

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

红宝石 |数值 real()函数

real()是 Ruby 中的一个内置方法,返回给定数字的实部。

示例 1

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

输出

10

示例 2

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

输出

18