题解 1021: [编程入门]迭代法求平方根

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

筛选

do while循环的迭代法

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>#includ……

我美吗!

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() {  int a;  double x,x1;  scanf(……

列表是无敌的

摘要:解题思路:注意事项:参考代码:a = int(input())b = []b.append(a)while True:    c = (b[-1]+a/b[-1])/2    b.append(c) ……