sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product
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
Find
sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product
average = sum/3
product = A*B*C
print sum, average,product