+ 1
Loop
How can I make my program like a loop? I mean when it reaches the end start from beginning (in java).
1 Resposta
+ 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);