Self-Learning Module

Outcomes Covered

Selection Statements

Watch

Do

Create a flowchart that matches the pseudocode shown below and upload it to Canvas. You can just draw it on paper and upload a photo or generate it electronically and upload an image or pdf file.

counter <- 5
sum <- 0
while (counter>0):
    print "Enter a number"
    input num
    sum <- num + sum
    counter <- counter - 1
print sum

Bonus Material (optional)