标签:
1.NOI 二分法求函数的零点
有函数:
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] 有且只有一个根,请用二分法求出该根。
#include<iostream> using namespace std; #include<cstdio> double f(double t) { return(t*t*t*t*t-15*t*t*t*t+85*t*t*t-225*t*t+274*t-121); } int main() { double l=1.5,r=2.4; while(r-l>=0.0000001) { double mid=(l+r)/2; if(f(mid)>=0) l=mid; else r=mid; } printf("%.6f\n",l); return 0; }
2.
标签:
原文地址:http://www.cnblogs.com/c1299401227/p/5347630.html