aboutsummaryrefslogtreecommitdiff
path: root/cst116-ch8-debugging-wilson-pseudo-code.txt
blob: 88bf8a87f701b90164718933921f0a4c04a7fdc1 (plain) (blame)
1
2
3
4
5
6
Set i = 0;
Set count;
If i < 10, Display i++; //This displays the current value of i, then adds 1 to that value and saves it for the next loop.//
When i = 10, While loop = false;

For count, when count < 10, add count++ and display count for that loop;