Asked by gatz

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

Answers

Answered by oobleck
sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product
Answered by Diksha
Find
Answered by Chin
sum = A+B+C
average = sum/3
product = A*B*C
print sum, average,product

There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions