题解 2817: 级数求和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2817: 级数求和

摘要:注意事项:参考代码:Sn = n = 0 k = int(input()) while True:     n = n + 1     Sn = Sn + 1/n      if Sn >

2817: 级数求和

摘要:参考代码:k = int(input()) Sn = 0 number = 1 while True:     Sn += 1 / number     if Sn > k:       ……

2817: 级数求和

摘要:解题思路:注意事项:参考代码:k = int(input())s = 0n = 0while k >= s:    n += 1    s += 1/nprint(n)……