當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer odd?用法及代碼示例


奇怪嗎Ruby中的函數返回布爾值。如果數字為奇數,則返回true,否則返回false。

用法: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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer odd? function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。