general format of while loop
Answers
Answered by
0
take the square root of the square and widely used it take the measure and the answer is is 216
Answered by
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