7 ms·
Couldn't you do this in any language? Either write a do while or write a infinite loop with true as condition and then write breaks in the loop itself? That's
by sangli 6y ago
Couldn't you do this in any language? Either write a do while or write a infinite loop with true as condition and then write breaks in the loop itself?
That's what I mostly do in java, write a while(true) and then either come back to change the condition or write break in the loop.