What is the correct syntax for a do-while loop in Java?

Last Updated :
Discuss
Comments

What is the correct syntax for a do-while loop in Java?

do { } while (condition);


while (condition) { }


do (condition) { }


while { condition };

Share your thoughts in the comments