Asked by abews
Design a pseudocode and a flowchart to input three numbers,find their total and average,and print both numbers.
Answers
Answered by
Steve
sum=0
for i=1 to 3
read n
sum += n
avg = sum/3
print sum, avg
for i=1 to 3
read n
sum += n
avg = sum/3
print sum, avg
There are no AI answers yet. The ability to request AI answers is coming soon!