Number.IsOdd
Indica se o valor é ímpar.
Syntax
Number.IsOdd(
number as number
) as logical
Remarks
Indica se o valor é ímpar. Devolve true
se number
for um número ímpar; caso contrário, devolve false
.
Examples
Example #1
Verificar se 625 é um número ímpar.
Number.IsOdd(625)
Result:
true
Example #2
Verificar se 82 é um número ímpar.
Number.IsOdd(82)
Result:
false
Category
Number.Information