given three numbers A,B,C. draw a flowchart to compute and print out the sum, average and the product of these values.

3 answers

sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product
Find
sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product