Write a program to input three integers and compute their average.
Answers
Answered by
0
U forgot to mention the language..
Answered by
0
Answer:
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
num3 = int(input("Enter third number: "))
print(num1 + num2 + num3 / 3)
Similar questions
Math,
5 hours ago
Computer Science,
10 hours ago
Art,
10 hours ago
Math,
8 months ago
Science,
8 months ago