This program finds the sum and average of three numbers. What are the proper codes for Lines a and b?
number1=10
number2=20
number3=30
sum=number1+number2+number3
print ("Number1 is equal to ", number1)
print ("Number2 is equal to ", number2)
print ("Number3 is equal to ", number3)
print ("The sum is ", sum)
Line a
Line b
+4
Answers (2)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “This program finds the sum and average of three numbers. What are the proper codes for Lines a and b? number1=10 number2=20 number3=30 ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » This program finds the sum and average of three numbers. What are the proper codes for Lines a and b? number1=10 number2=20 number3=30 sum=