Zusammenfassung der Ressource
Do
- Do until
- Repeats until a
condition is met
- Can be stated at
the beginning or
end of the loop
- Do while
- Does while a
condition is met
- Can be stated at
the beginning or
end of the loop
- Do Loop
- The code inside the loop
will repeat constentaly
- Can be ended by an Exit Do statment
- Can be ended by a End
statement which will end the
program
- A do statment is a
type of iteration