当前位置:主页 > 软件编程 > Python代码 >

python 输入一个数n,求n个数求乘或求和的实例

时间:2022-10-06 11:58:23 | 栏目:Python代码 | 点击:

求和

try:
 while True:
  n=input()
  s=1
  for x in raw_input().split():
   s=s+int(x)
  print s
except EOFError:
 exit()

求乘

try:
 while True:
  n=input()
  s=1
  for x in raw_input().split():
   s=s*int(x)
  print s
except EOFError:
 exit()

您可能感兴趣的文章:

相关文章