What is wrong with:
num1 = int (input("Enter a number: "))
num2 = int (input("Enter a number: "))
num3 = int (input("Enter a number: "))
print ("The average is: " + (num1 + num2 + num3)/3)
Answers
Answered by
5
Answer:
'/&'
is missing
hope soo
Answered by
2
Answer:
"+" Sign in your code should be "," comma
Explanation:
num1 = int (input("Enter a number: "))
num2 = int (input("Enter a number: "))
num3 = int (input("Enter a number: "))
print ("The average is: " , (num1 + num2 + num3)/3)
Hope this will help you.
Similar questions
Math,
5 months ago
Math,
5 months ago
Math,
10 months ago
Environmental Sciences,
10 months ago
Hindi,
1 year ago