题目
计算下列级数和的近似值,x的值从键盘输入,求和精度为10-6,输出达到精度要求的最小n与级数和
s(x)=x-x3/3!+x5/5!-x7/7!+……+(-1)n-1·x2n-1/(2n-1)!
【输入形式】
从键盘输入x的值(实数).
【输出形式】
【样例输入1】 0.523599
【样例输出1】 4,0.500000
【样例输入2】 -1
【样例输出2】 5,-0.841471
#include "stdio.h"
#include "math.h"
int main()
{
x05double x,f,s=0,t;
x05x05int n;
x05x05scanf("%f",&x);
x05x05f=x;
x05x05while(fabs(t)
s(x)=x-x3/3!+x5/5!-x7/7!+……+(-1)n-1·x2n-1/(2n-1)!
【输入形式】
从键盘输入x的值(实数).
【输出形式】
【样例输入1】 0.523599
【样例输出1】 4,0.500000
【样例输入2】 -1
【样例输出2】 5,-0.841471
#include "stdio.h"
#include "math.h"
int main()
{
x05double x,f,s=0,t;
x05x05int n;
x05x05scanf("%f",&x);
x05x05f=x;
x05x05while(fabs(t)
提问时间:2021-03-16
答案
#include #include int main(){double x,f,s,t;int n;printf("please input x(0 to exit):");scanf("%lf",&x); // double 输入用 "%lf"while(x != 0) ////// 要不要这个循环,看情况{n = 1;f = x;s = 0;t = f;while(f...
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
最新试题
- 128、 公园内有一个湖泊,其余为绿地、建筑物和道路,已知公园面积为 平方千米,绿地面积为公园面积的 ,建
- 2英语When___the Art Club___? In 2003.
- 3一筐苹果,先拿出14个,再拿出60%,还剩总数的6分之1.这筐苹果原来有多少个?
- 4The tourists had to stay at the hotel because of the heavy rain.(保持句意基本不变)
- 5若2x+3y的平方-2的值是6,求8x+12y的平方+5的值?
- 6请问上面一个日,下面一个斤,这个字怎么读?
- 7草原八月末读后感
- 8书上元夜游译文
- 9I hope all of us can stand the test of time 什么意
- 10Wulingyuan Scenic and Historic Interest Area怎么读
热门考点