⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 2_6.cpp

📁 a programme set to teach you how to use c
💻 CPP
字号:
#include <iostream.h>
#include <math.h>
#include <iomanip.h>
void main()
{
	float x,x0,f,f1;
	x=1.5;
	do
	{
		x0=x;
		f=((2*x0-4)*x0+3)*x0-6;
		f1=(6*x0-8)*x0+3;
		x=x0-f/f1;
	}while(fabs(x-x0)>=1e-5);
	cout<<"方程的根=";
	cout<<setiosflags(ios::fixed)<<setprecision(6)<<x<<endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -