当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。