陈磊


私信TA

用户名:GodC

访问量:1378

签 名:

祝她幸福好吧

等  级
排  名 474
经  验 4706
参赛次数 0
文章发表 6
年  龄 0
在职情况 学生
学  校 中山大学
专  业

  自我简介:

斑马 斑马

解题思路:分别求a部分,b部分,c部分的和

注意事项:欢迎报考中山大学!

参考代码:

import math

a,b,c=map(int,input().split())

squares=[]

pfh=[]

dsh=[]

for i in range (a+1):

    squares.append(i)

x=math.fsum(squares)

for s in range (b+1):

    pfh.append(s**2)

y=math.fsum(pfh)

for f in range (1,c+1):

    dsh.append(1/f)

z=math.fsum(dsh)

t=x+y+z

print("%.2f"%t)


 

0.0分

1 人评分

  评论区

  • «
  • »