Week 2 - Pseudocode and Flowchart - 1
Week 2 - Pseudocode and Flowchart - 1
Area = π*r2
Start Get radius Circumference = 2πr
Print Area
Print End
Circumferenc
e
3. Write a pseudocode and draw a flowchart to calculate
and print the average of three numbers: 20, 10, and 2.
Start
Input num1
Num1 = 20
Num2 = 10
Num3 = 2
Sum = Num1 + Num2 + Num3
Average = Sum / 3
Display Average
End