📌  相关文章
📜  在 Julia 中检查数字是否为奇数 – isodd() 方法

📅  最后修改于: 2021-11-25 04:45:50             🧑  作者: Mango

isodd()是 julia 中的一个内置函数,用于在指定值x为奇数时返回 true,即不能被 2 整除,否则返回 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