write an algorithm to find the sum and average of three numbers
Answers
Answered by
190
Following are the algorithm of the sum and the average of three numbers is given below.
Explanation:
Step 1: Start
Step 2 :Read the three number suppose "a","b","c" form the user.
Step 3: Declared a variable "sum" and "Avg".
Step 4 : sum=a+b+c;
Step 5: Avg=sum/3
Step 6:Display "sum " and "Avg".
Step 7 :End .
Learn More :
- brainly.in/question/13673075
- brainly.in/question/4580130
Answered by
62
FOLLOWING THE ALGORITHM...
Start
Read a,b,c
sum=a+b+c
Avg=sum/3
Output avg
End
Similar questions