Ruby整数 magnitude函数与实例
Ruby中的 magnitude() 函数返回整数的绝对值。它类似于abs函数,是它的一个别名。
语法 :(number).magnitude
参数 :该函数接收要返回其幅度的整数。
返回值 :该函数返回整数的绝对值。
例子 #1 :
# Ruby program of Integer magnitude function
# Initializing the numbers
num1 = -21
num2 = 21
num3 = 0
num4 = -100
# Printing the magnitude value of integers
puts (num1).magnitude
puts (num2).magnitude
puts (num3).magnitude
puts (num4).magnitude
输出:
21
21
0
100
例子#2 。
# Ruby program of Integer magnitude function
# Initializing the numbers
num1 =29
num2 = -7
num3 = 90
num4 = -10
# Printing the magnitude value of integers
puts (num1).magnitude
puts (num2).magnitude
puts (num3).magnitude
puts (num4).magnitude
输出:
29
7
90
10