利用公式求cos x的近似值,精确度为10-6
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/10 15:04:46
利用公式求cos x的近似值,精确度为10-6
#include
#define PI 3.14159
main()
{
int n,xx;
float t,sum,x;
printf("请输入弧度x=π/xx对应的分母值:");
scanf("%d",&xx);
x=PI/xx;
t=x;
n=0;
sum=0;
do
{sum+=t;
t=-t*x*x/(n+1)*(n+2);
n+=2;
}
while(fabs(t)>=1e-6);
printf("sin(PI/%d)=%f/n",xx,sum);
}
5-4.cpp
F:\C语言\5-4.cpp(7) :error C2065:'printf' :undeclared identifier
F:\C语言\5-4.cpp(8) :error C2065:'scanf' :undeclared identifier
F:\C语言\5-4.cpp(9) :warning C4244:'=' :conversion from 'double' to 'float',possible loss of data
F:\C语言\5-4.cpp(20) :warning C4508:'main' :function should return a value; 'void' return type assumed
执行 cl.exe 时出错.
#include
#define PI 3.14159
main()
{
int n,xx;
float t,sum,x;
printf("请输入弧度x=π/xx对应的分母值:");
scanf("%d",&xx);
x=PI/xx;
t=x;
n=0;
sum=0;
do
{sum+=t;
t=-t*x*x/(n+1)*(n+2);
n+=2;
}
while(fabs(t)>=1e-6);
printf("sin(PI/%d)=%f/n",xx,sum);
}
5-4.cpp
F:\C语言\5-4.cpp(7) :error C2065:'printf' :undeclared identifier
F:\C语言\5-4.cpp(8) :error C2065:'scanf' :undeclared identifier
F:\C语言\5-4.cpp(9) :warning C4244:'=' :conversion from 'double' to 'float',possible loss of data
F:\C语言\5-4.cpp(20) :warning C4508:'main' :function should return a value; 'void' return type assumed
执行 cl.exe 时出错.
你没有引入输入头文件
#include "iostream"
using namespace std;
#include "iostream"
using namespace std;
利用公式求cos x的近似值,精确度为10-6
c语言编程 求sin(x)的近似值 描述:利用公式求sin(x)的近似值(精度为10e-6).sin(x)=x-x^3/
求sinx的近似值利用公式求sin(x)的近似值(精度为10e-6).sinx=x-x3/3!+.
用VB编写程序,程序的功能是,利用下列公式求函数cos(x)的近似值,规定通项的绝对值≤10-6时结束计算.输入x
求方程2的x次方+1=7的x次方-1的近似值,精确度为0.1
输入X,利用公式e^x=1+x+x^2/2!+x^3/3!+…求e^x的近似值,直到最后一项绝对值小于-10^-6
求方程x^2-2x-1的一个近似值(精确度0.1),
利用近似值的公式计算:
求兀的近似值的公式为:
求函数f(x)=2∧x-3的零点的近似值,试用二分法画出流程图,精确度为0.01,要详细过程
已知f(x)的一个零点x0∈(2,3),用二分法求精确度为0.01的x0的近似值时,
VB求e的近似值利用e^x的近似公式计算e(直到最后一项小于10^-6)e^x=1+x/1!+x^2/2!+……x^n/