Computer Science, asked by tejammeshram, 5 days ago

Write the syntax of the while statement with an example.​

Answers

Answered by oODivineGirlOo
0

Answer:

The syntax is: do { statements } while(condition); Here's what it does. First, the statements are executed, then the condition is tested; if it is true , then the entire loop is executed again.

Similar questions