aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-PsuedoCode-Havaldar.txt
blob: afeb9ec5c1c4a10fea35c35d3a90dd804af0aa11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Program Start

Set veriable i as an integer equal to 0

intialize variable count as an int

While i is less than 10
	print i with line break
	increment i by 1

For count set to 0, while it is less than 10, and increment it by 1 every cycle
	print out count

Program End