input program in java : write a program to input 3 numbers and find their product?
Answers
Answered by
0
Answer:
computer 3 are is the input on organ notes
Answered by
1
Answer:
def product():
''' Finds the product of three numbers '''
num1 = input("Enter first number: ")
num2 = input("Enter second number: ")
num3 = input("Enter third number: ")
return float(num1) * float(num2) * float(num3)
Explanation:
you can do it like this in python
Similar questions