Computer Science, asked by sonu922858, 5 months ago


1. Write a program that inputs, calculates and displays the average of there numbers

Answers

Answered by nevonj2am
1

Answer:

If u want a python program here you go

a=float(input("Enter a number:"))

b=float(input("Enter a number:"))

c=float(input("Enter a number:"))

av=(a+b+c)/3

print("The average of the entered numbers are",av)

l hope this program works out 4 u :)

Explanation:

l've used float incase if u want to input a decimal no.

make sure that u use ((brackets))

Similar questions