Computer Science, asked by at416975, 5 months ago

this Loop statements is used to excute one or more statements while a given condition is true​

Answers

Answered by mk829119
1

Answer:

while loop statement is used to execute one or more statements while a given condition is true.

Answered by Anonymous
1

while loop is executed once before the condition is checked. Its syntax is: do { // body of loop; } while (condition); ... If the condition evaluates to true , the body of the loop inside the do statement is executed again.

Similar questions