I have an for statement which prompts the user to input 5. numbers. Like this:
"Input 1. number:
input 2. number:
..
..
.."
I want to repeat the last prompt the user gets before he makes a wrong input (number too big). But my program skips the wrong one:
like this
"Input 1. number:
5
Accepted
input 2. number:
999
Wrong! Retry
(here I use *continue* for the loop)
input 3.number:
---"
What should I do to re-ask the second question?