Computer Science, asked by yoarpits3420, 3 days ago

write a basic program to read 4 numbers and find their average basic questions

Answers

Answered by saransrini03
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