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 ]

版权声明:
作者:cc
链接:https://www.techfm.club/p/89658.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>