Computer Science, asked by gouravkumawat606, 4 months ago

to calaslate the average of three nimbers​

Answers

Answered by keyboardavro
0

Answer:

Explanation:

The mean is the average of the numbers. It is easy to calculate: add up all the numbers, then divide by how many numbers there are. In other words it is the sum divided by the count.

Answered by anindyaadhikari13
1

Question:-

  • Write a program to calculate the average of 3 numbers.

Program:-

This is written in Python.

a, b, c=int(input()),int(input()),int(input())

av=(a+b+c)/3

print("Average of the 3 numbers is: ",av)

Similar questions