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

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

筛选

【C语言】迭代法求平方根

摘要:# 原题目 用迭代法求 平方根 公式:求a的平方根的迭代公式为: **X[n+1]=(X[n]+a/X[n])/2** 要求**前后两次求出的差的绝对值少于0.00001**。 输出保留3位小数。……

简单求平方根

摘要:解题思路:直接用求平方函数sqrt就行了。注意事项:记得加#include<math.h>头文件。参考代码:#include<stdio.h>#include<math.h>main() { floa……

理解一下牛顿公式吧

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a; double X=1.0,x; scanf("%d",&a); w……

记录自己答案:1021

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; double xn1,xn=1.0; scanf("%d",&x); xn1=(xn+x/xn)/……

【C++较复杂版解法】

摘要:参考代码:#include <iostream> #include <math.h> #include <iomanip> using namespace std; int main() ……