请参阅
每种语言都提供了相同的 WHILE 循环功能。
DO WHILE n < 100 n = n + n ENDDO
Do While n < 100 n = n + n Loop
while n < 100 do n := n + n;
while(n < 100) n += n;