码迷,mamicode.com
首页 > 其他好文 > 详细

calculateRoot

时间:2018-11-06 11:10:25      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:code   class   using   div   else   mat   bsp   double   name   

求下面方程的 一个根: 根:f(x) = x 3 -5x 2 +10x-80 = 0。若求出的根是 若求出的根是a ,则要求 |f(a)| <= 10 -6

 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <math.h>
 4 using namespace std;
 5 double EPS = 1e-6;
 6 double findValue(double x) {
 7     return x*x*x - 5*x*x +10*x -80;
 8 }
 9 
10 int main() {
11     double first = 0, second = 100;
12     double midX = first + (second - first)/2.0;
13     double midVlaue = findValue(midX);
14     while( fabs(midVlaue) > EPS) {
15         if(midVlaue > 0) {
16             second = midX;
17         } else {
18             first = midX;
19         }
20         midX = first + (second - first)/2.0;
21         midVlaue = findValue(midX);
22 
23     }
24     printf("%.8lf", midX);
25     return 0;
26 }

 

calculateRoot

标签:code   class   using   div   else   mat   bsp   double   name   

原文地址:https://www.cnblogs.com/zhishoumuguinian/p/9913112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!