标签:http params 输入 mat blog 1.5 double pow param
http://noi.openjudge.cn/ch0111/02/
有函数:
f(x) = x5 - 15 * x4+ 85 * x3- 225 * x2+ 274 * x - 121
已知 f(1.5) > 0 , f(2.4) < 0 且方程 f(x) = 0 在区间 [1.5,2.4] 有且只有一个根,请用二分法求出该根。
无
不提供
1 #include<stdio.h> 2 #include<math.h> 3 double f(double x) 4 { 5 double ans=0; 6 ans=pow(x,5)-15*pow(x,4)+85*pow(x,3)-225*pow(x,2)+274*x-121; 7 return ans; 8 } 9 int main(int argc, char *argv[]) 10 { 11 double x,y,mid,fx,fy,fm; 12 x=1.5; 13 y=2.4; 14 mid=(x+y)/2; 15 fx=f(x); 16 fy=f(y); 17 fm=f(mid); 18 while( fabs(fm-0) > 1e-6) 19 { 20 if(fx*fm<0) { y=mid; fy=f(y); } 21 else { x=mid; fx=f(x); } 22 mid=(x+y)/2; 23 fm=f(mid); 24 } 25 printf("%.6lf\n",mid); 26 return 0; 27 }
标签:http params 输入 mat blog 1.5 double pow param
原文地址:http://www.cnblogs.com/huashanqingzhu/p/6882823.html