If you want your program to loop then, well, you need to use a loop. "if" isn't a loop, it's just a branch point; there's no return. Your loops are called "for", "while", and "do while".
Once you...