write a basic program to read 4 numbers and find their average basic questions
Answers
Answered by
0
i write in python
a = int(input("Enter the number : "))
b = int(input("Enter the number : "))
c = int(input("Enter the number : "))
d = int(input("Enter the number : "))
avg = a+b+c+d/4
print(avg)
Similar questions