用二分法求方程2x3-4x2+3x-6=0在x=1.5附近的实数根,精度ε=10-5.C++源程序
问题描述:
用二分法求方程2x3-4x2+3x-6=0在x=1.5附近的实数根,精度ε=10-5.C++源程序
答
朋友,你这道题明显有bug.
你给出的方程2x3-4x2+3x-6可以验证就是一个单调递增函数.
而在x=1.5处 原式=-3.75根本找不到零点
其实经过我验证 完全的零点就在x=2处
下面给出我的程序代码:
#include
#include
double f(double x)
{
return 2*x*x*x-4*x*x+3*x-6;
}
void main()
{
double e=1e-5;
double start,end,mid;
coutend;
while(f(start)*f(end)>0)
{
coutend;
}
if(fabs(f(start))