what is the syntax of while loop in Java?
Answers
Answered by
0
Explanation:
अगर जनता के समाचार सुनाओ
Answered by
1
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