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

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

筛选

我美吗!

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

[编程入门]迭代法求平方根

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){         double n,N=1,a,i;     scanf("%lf",&a);     for(i……

记录自己答案:1021

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