Answer to Question #225223 in Python for Siv

Question #225223

Product of the Given Numbers

Given an integer using WHILE LOOP


N, write a program which reads N inputs and prints the product of the given input integers.Input

The first line of input is a positive integer,


N. The next N lines each contain an integer.Output

The output should be the product of the given input integers.


Explanation

In the given example,

N = 3 and the input integers are 2, 3, and 7.So, the output should be 2 x 3 x 7 = 42



1
Expert's answer
2021-08-11T06:26:52-0400
n = int(input('N = '))
res = 1
k = 0
while k < n:
	res *= int(input())
	k += 1
print(res)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS