what is the syntax of while loop in Java?
Answers
Answered by
1
I hope it help you
mark me as brainliest
Attachments:
Answered by
0
The do/while loop is a variant of the while loop. This loop will execute the code block once, before checking if the condition is true, then it will repeat the loop as long as the condition is true.
Similar questions