📜  红宝石 |数字相位()函数

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

红宝石 |数字相位()函数

phase()是 Ruby 中的内置方法,如果值为正,则返回 0,否则返回浮点值 pi。

示例 1

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

输出

0

示例 2

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

输出

3.141592653589793