How do you display the solution of finding the average on a flow chart
Answers
Answered by
0
Answer:
How do I create or draw a flowchart to find the average of three input integer numbers?
Take your fitness business online and start earning today!
To draw any flowchart it is necessary to make algorithm for the same
Algorithm : To calculate average of three numbers.
Step1 : Read three values a, b, c. //(int or float or double any but dont write datatype in flowchart)
Step2 : initialize avg to 0
Step3 : avg <- (a+b+c)/3
Step4 : print avg
Then to draw flowchart for same. First we need to understand what are the symbols for each statement.
Similar questions