Ruby 整数 next函数与实例
在Ruby中, next 函数返回数字的直接继承者,即,它返回 数字+1。 如果使用的是浮动值,它会抛出一个错误信息。
语法 :number.next
参数 :该函数接收下一个要返回的整数。
返回值 :该函数返回数字的直接继承者,即返回数字+1。
例子 #1 :
# Ruby program of next function
# Initializing the numbers
num1 = 100
num2 = 17
num3 = -90
num4 = -29
# Printing the modulo value
puts num1.next
puts num2.next
puts num3.next
puts num4.next
输出:
101
18
-89
-28
例子#2 。
# Ruby program of next function
# Initializing the numbers
num1 = 19
num2 = -17
num3 = -18
num4 = 16
# Printing the modulo value
puts num1.next
puts num2.next
puts num3.next
puts num4.next
输出:
20
-16
-17
17