跳至内容

BASIC 编程/BASIC 入门/控制结构/DO...LOOP

来自维基教科书,一个自由的教科书

在上一章我们学习了如何将数据输入程序。那么现在你将学习如何一遍又一遍地重复一项功能。请记住,在一个 BASIC 版本中,单引号 (') 右侧的任何内容都是注释,如果它们造成问题,应删除或用不同种类的 REMARK 替换。

CLS 'Clears screen for user

DO 'Starts the Looping process, anything between this and the LOOP command will be repeated.
  PRINT "You will get this message over and over." 'Displays the message "You will get this message over and over."
LOOP ' Shows where objects should stop being looped.

此循环将一直持续,除非被操作系统打断。如果你希望有一个循环结束的条件,可以在 LOOP 后面输入 WHILE 或 UNTIL 关键字。

华夏公益教科书