编写题解 1152: C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) 摘要:解题思路:注意事项:参考代码:n = int(input())t = 1for i in range(2,n+1): t -= 1/(i*i)print('%.6f'%t)…… 题解列表 2021年12月14日 0 点赞 0 评论 242 浏览 评分:9.0
1152: C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m)-题解(python) 摘要:解题思路:注意事项:参考代码:n = int(input())s = 1if n == 1: print("{:.6f}".format(s))else: for i in range(2…… 题解列表 2021年10月23日 0 点赞 0 评论 334 浏览 评分:9.0