(defn gcd "greatest common divisor" [a b]. (if (zero? b) a (gcd b (mod a b)))). (println "gcd of 8 and 12 is" (gcd 8 12)).
確定! 回上一頁