Computer Science, asked by oliviabacchus15, 1 month ago

write an algorithm to find and display the total average of three numbers

Answers

Answered by MuhammedRayan
1

Answer:

This is written in python

Explanation:

number1 = 3

number2 = 5

number3 = 12

average = (number1 + number2 + number3)/3

Answered by anaghasethu1998
0

Explanation:

1. Start

2. Take the input from the user, a b and c.

3. Declare the variable sum and average as int and float respectively.

4. sum = a + b + c

5. average = sum/3

6. Display average

7. Stop

Similar questions