I need explanations on for loop, while loop nesting. Explanations from the scratch | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

I need explanations on for loop, while loop nesting. Explanations from the scratch

3rd Feb 2022, 12:27 PM
š‘Øš’š’—š’Šš’
š‘Øš’š’—š’Šš’ - avatar
3 Respostas
+ 1
TheĀ for statementĀ creates a loop that consists of three optional expressions, enclosed in parentheses and separated by semicolons, followed by a statement (usually aĀ block statement) to be executed in the loop
3rd Feb 2022, 12:31 PM
Jasy Fabiano
Jasy Fabiano - avatar
+ 1
TheĀ while statementĀ creates a loop that executes a specified statement as long as the test condition evaluates to true. The condition is evaluated before executing the statement.
3rd Feb 2022, 12:36 PM
Jasy Fabiano
Jasy Fabiano - avatar