What can you tell me about while and do while loops?
true
Great! They both run for as long as their run condition is true
but do while loops check the condition at the end of the block and, therefore, run at least once.
Oh noes! They both run for as long as their run condition is true
but do while loops check the condition at the end of the block and, therefore, run at least once.