Loop | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Loop

How can I make my program like a loop? I mean when it reaches the end start from beginning (in java).

1st Oct 2018, 5:16 PM
ILIA
1 Answer
+ 1
usually you can have a Do-While loop where you have the program run at least once and checks a condition at the end to see if you want to go back to the start. do{ -program goes here- } while(cond == true);
1st Oct 2018, 5:37 PM
Justin Petluk
Justin Petluk - avatar