Ruby 整数 odd函数与实例
Ruby中的 odd? 函数返回一个布尔值。如果数字是奇数,它返回真,否则返回假。
语法 :number.odd?
参数 :该函数接收要检查是否为奇数的整数。
返回值 :该函数返回一个布尔值,决定该值是否为奇数。
例子 #1 :
# Ruby program of integer odd? function
# Initializing the numbers
num1 = 19
num2 = 2
num3 = 28
num4 = 13
# Prints true if number is odd
puts num1.odd?
puts num2.odd?
puts num3.odd?
puts num4.odd?
输出:
true
false
false
true
例子#2 。
# Ruby program of integer odd? function
# Initializing the numbers
num1 = 18
num2 = 200
num3 = 2987
num4 = 13
# Prints true if number is odd
puts num1.odd?
puts num2.odd?
puts num3.odd?
puts num4.odd?
输出:
false
false
true
true