Answer:
Input: Take 3 numbers A, B and C
Processing: Find average of 3 numbers using formula: Average= A+B+C/3
Output: The output is Average of three numbers.
Explanation:
We need to write an algorithm to compute and print out the average of 3 numbers A,B,C
An algorithm has Input, Processing and Output
The algorithm required is:
Input: Take 3 numbers A, B and C
Processing: Find average of 3 numbers using formula: Average= A+B+C/3
Output: The output is Average of three numbers.