Product of the Given Numbers
Write a Python program of Product of the Given Numbers. It consists of two test cases
The below link contains Product of the Given Numbers - Question, explanation and test cases
https://drive.google.com/file/d/10Nz6JMLsNfGXtA3WhaSYcRx5IO8JqieU/view?usp=sharing
We need all test caese can be come while code was running
N=int(input("Enter number of integers: "))
product=1
for i in range(N):
x=int(input())
product*=x
print(product)
Comments
Leave a comment