-
MathType
-
Wiris Quizzes
-
Learning Lemur
-
CalcMe
-
MathPlayer
-
Store FAQ
-
VPAT for the electronic documentation
-
MathFlow
-
BF FAQ
Loop statements
Reading time: 1minLoop statements | |
---|---|
![]() |
for statement. Write quickly a loop that needs to be run a specific number of times. |
![]() |
while statement repeats the code block until the condition is not satisfied. Be sure that the condition does not hold in some cases. Otherwise, the code will run infinitely. |
![]() |
repeat statement. While the condition does not hold, duplicate the code block. Again, be sure that the condition is satisfied sometimes. |