迭代法求平方根python 摘要:参考代码:a=int(input())b=awhile True: c=(b+a/b)/2 if abs(b-c)<0.00001: …… 题解列表 2025年01月16日 0 点赞 0 评论 57 浏览 评分:0.0
编写题解 1021: [编程入门]迭代法求平方根 摘要:参考代码:x=int(input()) lis=[x] for i in range(1,20): c=lis[i-1]+x/lis[i-1] lis.append(c/2) …… 题解列表 2023年03月30日 0 点赞 0 评论 111 浏览 评分:0.0
最简约易懂求平方根 摘要:解题思路:一直迭代注意事项:迭代参考代码:a=float(input())x1=a/2x2=(x1+a/x1)/2while abs(x1-x2)>0.00001: x1=x2 x2=(x…… 题解列表 2023年01月11日 0 点赞 0 评论 492 浏览 评分:9.9
耍个小聪明 摘要:# Python解决平方根问题 在python中,math库提供sqrt()函数来完成平方根操作。 那还有啥好说的?! ```python import math a = int(input…… 题解列表 2022年08月08日 0 点赞 0 评论 364 浏览 评分:6.0
编写题解 1021: [编程入门]迭代法求平方根 摘要:解题思路:注意事项:参考代码:a = eval(input())b = ac = (b + a/b)/2while c - b or b - c>= 0.00001: b = c c = …… 题解列表 2022年05月27日 0 点赞 3 评论 247 浏览 评分:9.0
一个用到列表的思路,可能麻烦点 摘要:解题思路:用list[-1]来解题注意事项:参考代码:a = int(input())list1 = [a,(a+1)/2]# print(list1[-1])if a == 0: print(…… 题解列表 2022年04月20日 0 点赞 0 评论 171 浏览 评分:0.0
[编程入门]迭代法求平方根(python) 摘要:解题思路:先假设一个初值X[n]=a/2(这里不是强求用a/2), 然后再套用公式X[n+1]=(X[n]+a/X[n])/2,用while不停迭代到结果退出循环即可注意事项:参考代码:a = int…… 题解列表 2022年02月08日 0 点赞 0 评论 1028 浏览 评分:9.9
【编程入门】迭代法求平方根-题解(python) 摘要:解题思路: 根据所给公式写出相应代码,因为要迭代,所以利用python复合赋值。注意事项: 格式化输出保留三位小数。参考代码:x = int(input())a = x/2b = (a+x/a…… 题解列表 2022年01月24日 0 点赞 0 评论 228 浏览 评分:8.0
列表是无敌的 摘要:解题思路:注意事项:参考代码:a = int(input())b = []b.append(a)while True: c = (b[-1]+a/b[-1])/2 b.append(c) …… 题解列表 2021年11月29日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]迭代法求平方根-题解(Python代码) 摘要:解题思路:注意事项:参考代码:#公式:求a的平方根的迭代公式为: # X[n+1]=(X[n]+a/X[n])/2 要求前后两次求出的差的绝对值少于0.00001。 输出保留3位小数 a=int(…… 题解列表 2020年12月06日 0 点赞 0 评论 1163 浏览 评分:7.0