Computer Science, asked by jobrulhaque1, 8 months ago

write an algorithm to find the average of three numbers​

Answers

Answered by tamizhiniezhil006
3

Answer:

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 .

Answered by arsh385881
1

Answer:

  1. Start
  2. read three no. s A, B, C
  3. find the average Average=(A+B+C) /3
  4. Print the average
  5. Stop
Similar questions