Introduction
A repeat-while loop helps you run a set of instructions at least once, then keep repeating them while a condition is true.
When you want to ask a question and repeat it until the answer is correct.
When you need to perform an action first, then check if you should do it again.
When you want to keep trying something until it works, but you must try at least once.
When you want to count or collect input from a user until a stop condition is met.