`for` or `while`, It Depends
Learn which loop(`for` or `while`) to choose according to given situations in this lesson.
We'll cover the following...
According to the situation, it depends whether we should use for loop or while loop statement.
while loop
Example: 1
In many cases, the while loop is the best remedy. Suppose, we want to take integer inputs from the user and give the output of the average value. While writing the code, we will decide how many times the user will type the value. In the following code, the user is restricted to giving five values.
Once the user reaches the ...
Ask