how do you do a repeat until loop??
if that is not a loop in java what are the different kinds of loops in java that you can use??
<Moderator added green check mark>
Printable View
how do you do a repeat until loop??
if that is not a loop in java what are the different kinds of loops in java that you can use??
<Moderator added green check mark>
Off the top of my head. while(condition), for(initialization;conditional test ;incrimination), do while(condition).
is there a do until loop??
No but im sure you can just change the logic. Do until 1 is > 10 == do while 1 < 11.
ah
thanks good idea
Anytime :thumb: