Clojure - odd?



如果数字是奇数,则返回 true,如果数字不是整数,则抛出异常。

语法

以下是语法。

(odd? number)

示例

以下是 odd 测试函数的示例。

(ns clojure.examples.hello
   (:gen-class))
;; This program displays Hello World
(defn Example []
   (def x (odd? 0))
   (println x)
   
   (def x (odd? 2))
   (println x)
   
   (def x (odd? 3))
   (println x))
(Example)

输出

上述程序生成以下输出。

false
false
true
clojure_numbers.htm
广告