times子循环
times是个子循环,不是独立的,指定次数的,共提供了10种语言。
times起初的COBOL语言。
COBOL语言(1959年)
perfrom 5 times
end-perfrom
CPL语言(1963年)
loop for 5 times
————do系列————
Rexx语言(1979年)
do 5
end
ABAP语言(1983年)
DO 5 TIMES
ENDDO.
HyperTalk语言(1987年)
repeat for 5 times
end repeat
AppleScript语言(1993年)
repeat 5 times
end repeat
Ruby语言(1995年)
5.times do
end
1.upto(5) do | i |
end
CommonLISP(1984,LISP:1960)
(dotimes (i 5)
(format t "~a~%" i))
Clojure语言(2007年)
(dotimes [i 5]
)
Quackery语言
5 times [ i^ echo sp 2 step ]
共有 0 条评论