write a program to assign 3 numbers find their sum product and average
Answers
Answered by
1
//this program is in python
a=int(input("enter the first number"))
b=int(input("enter the second number"))
c=int(input("enter the third number"))
sum=a+b+c
print(sum)
prod=a*b*c
print(prod)
average=(a+b+c)/3
print(average)
Similar questions
CBSE BOARD X,
8 months ago
Math,
8 months ago
Science,
1 year ago
Science,
1 year ago
English,
1 year ago