参考代码:
#include <iostream> #include <math.h> #include <iomanip> using namespace std; int main() { double a,b,x1,x2; cin>>a; x1=a/2.0; x2=(x1+a/x1)/2.0; while(x1-x2>0.00001) { x1=(x2+a/x2)/2; x2=(x1+a/x1)/2; if(x1-x2<=0.00001) { break; } } if(x1-x2<=0.00001) { cout<<fixed<<setprecision(3)<<x1<<endl; } return 0; }
0.0分
0 人评分
川哥的吩咐 (C语言代码)浏览:926 |
C语言程序设计教程(第三版)课后习题8.3 (Java代码)浏览:1402 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1024 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:934 |
三角形 (C语言代码)浏览:965 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:729 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:581 |