📄 sendloop.gml
字号:
.section END LOOP Statement
.*
.mext begin
END LOOP
.mext end
.np
The
.kw END LOOP
statement is used in conjunction with the structured
.kw LOOP
statement.
The
.kw END LOOP
statement marks the end of a sequence of statements which are to be
repeated.
The
.kw LOOP
statement marks the beginning of the loop.
The LOOP-block is executed until control is transferred out of the
LOOP-block.
.np
The
.kw QUIT
statement may be used to transfer control out of a LOOP-block.
.exam begin
LOOP
READ *, X
IF( X .GT. 99.0 ) QUIT
PRINT *, X
END LOOP
.exam end
.np
For more information, see the chapter entitled :HDREF refid='fstruct'..
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -