(defn gcd[a b] (if (zero? b) a (gcd b (rem a b))) ) ; (println (gcd 2 4)) ; Problem 107 ; Lexical scope and first-class functions are two of ...
確定! 回上一頁