数值方法二分法解非线性方程

风流意气都作罢 提交于 2020-03-02 18:08:06

解非线性方程y=x^3 +4*x^2-10在区间[1,2]的根,精确到小数点后第三位
严格按照科学出版社数值计算方法定义


#include <iostream>
using namespace std;
#define WUCHA 0.0005//误差
double hanshu(double x) {//函数
	return x * x * x + x * x * 4.0 - 10.0;
}

int main()
{
	double a = 1;
	double b = 2;
	double midd;
	int count = 1;
	while ((b - a)/2 > WUCHA) {
		midd = (a + b) / 2;
		if (hanshu(midd) > 0.0) {
			b=midd;
		}
		else {
			a=midd;
		}
		count++;
		
	}
	cout << "结果:" << (a+b)/2 << endl;
	cout << "运算次数:" << count;
	return 0;
}

}

在这里插入图片描述

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!