blob: 49a5c6d42a1169323e200f34d241ac69857e6b39 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
1. Variable i = 0
2. While i is less than 10:
a. Print i = i + 1
b. Repeat until i = 10
3. Variable count = 0
4. For count less than 10:
a. Print count = count + 1
b. Repeat until count = 10
|