(defn factorial [x] (if (< x 2) 1 (* x (factorial (dec x))))) (doseq [i (range 17)] (println (str (str i "! = ") (factorial i)))) ...
確定! 回上一頁