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
相关用法
- Ruby Numeric magnitude()用法及代码示例
- Ruby Float magnitude()用法及代码示例
- Ruby Integer integer?用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer chr用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer magnitude function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。