Ruby 数值 phase()函数
phase() 是Ruby中的一个内置方法,如果数值为正数,则返回0,否则返回一个浮点数pi。
语法 :num.phase()
参数 :该函数需要一个要检查的数字。
返回值 :如果数值是正的,则返回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