📜  Ruby Float phase() 方法与示例

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

Ruby Float phase() 方法与示例

Float phase()是一个浮点类方法,它适用于浮点值,并且对正值和负值的工作方式不同。

示例 #1:

# Ruby code for phase() method
  
# Initializing value
a = -100.7 - 10.4
  
b = -100 * 2000.0
  
c = (22 + 7.1) * 4
  
# Printing result
puts "phase value of a : #{a.phase}\n\n"
puts "phase value of b : #{b.phase}\n\n"
puts "phase value of c : #{c.phase}\n\n"

输出 :

phase value of a : 3.141592653589793

phase value of b : 3.141592653589793

phase value of c : 0

示例 #2:

# Ruby code for phase() method
  
# Initializing value
a = -56.23333333
b = 10000.0
c = -(22 + 7.1)
  
# Printing result
puts "phase value of a : #{a.phase}\n\n"
puts "phase value of b : #{b.phase}\n\n"
puts "phase value of c : #{c.phase}\n\n"

输出 :

phase value of a : 3.141592653589793

phase value of b : 0

phase value of c : 3.141592653589793