Computer Science, asked by skthakur488, 1 month ago

general format of while loop

Answers

Answered by puneshsingh1984
0

take the square root of the square and widely used it take the measure and the answer is is 216

Answered by atrs7391
1

While loop on BASIC languages (QBasic, GWBasic etc.):

WHILE (---CONDITION HERE---)

---PROGRAM HERE---

WEND

While loop on languages that uses c-style array (Java, Kotlin, C++ etc.):

while (---CONDITION HERE---)

{

     ---Program Here---

}

While loop on Python language:

while (---condition here---):

   ---Condition Here---

Similar questions