Design a pseudocode and a flowchart to input three numbers,find their total and average,and print both numbers.

1 answer

sum=0

for i=1 to 3
read n
sum += n

avg = sum/3

print sum, avg