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


Julia isodd()用法及代碼示例


這個isodd()是 julia 中的一個內置函數,用於在指定值 x 為奇數時返回 true,即不能被 2 整除,否則返回 false。

用法: isodd(x::Integer)

參數:

  • x:指定號碼

返回值:如果指定的值 x 是奇數,即不能被 2 整除,則返回 true,否則返回 false。

範例1:




# Julia program to illustrate 
# the use of isodd() method
  
# Getting true for the odd
# value else returns false
println(isodd(0))
println(isodd(1))
println(isodd(-2))

輸出:

false
true
false

範例2:


# Julia program to illustrate 
# the use of isodd() method
  
# Getting true for the odd
# value else returns false
println(isodd(6))
println(isodd(7))
println(isodd(-10))
println(isodd(-11))

輸出:

false
true
false
true

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Checking if a number is odd in Julia – isodd() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。