W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
'dotimes'語句用于執(zhí)行語句“x”次。
以下是dotimes語句的一般語法。
(dotimes (variable value) statement)其中值必須是指示循環(huán)需要被迭代的次數(shù)的數(shù)字。
以下是'doseq'語句的示例。
(ns clojure.examples.hello (:gen-class)) ;; This program displays Hello World (defn Example [] (dotimes [n 5] (println n))) (Example)
在上面的例子中,我們使用dotimes語句來重復執(zhí)行println語句的次數(shù)。 并且對于每次迭代它也增加變量n的值。
以上示例將輸出以下結果:
0 1 2 3 4
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: