For Loop
The for loop is little different as illustrated below:
Example-1
Write an algorithm for an application that uses a for loop to display numbers from 10 to 100 in a List-box.
- for counter = 10 , counter ≤ 100 , counter = counter + 10
- Display counter
Example-2
Write an algorithm for an application that uses a for loop to display numbers from 10 to 1 in a List-box.
- for counter=10 , counter >= 1 , counter = counter - 1
- Display counter