这个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
相关用法
- Julia iseven()用法及代码示例
- Julia issetequal()用法及代码示例
- Julia isvalid()用法及代码示例
- Julia count()用法及代码示例
- Julia length()用法及代码示例
- Julia conj()用法及代码示例
- Julia abs()用法及代码示例
- Julia factorial()用法及代码示例
- Julia binomial()用法及代码示例
- Julia round()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia reverse()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Checking if a number is odd in Julia – isodd() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。