代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:sum123.cpp
*作 者:林海云
*完成日期:2014年12月16日
*版 本 号:v2.0
*
*问题描述:用无穷级数e^x = 1+x+x^2/2!+x^3/3!+……x^n/n!+……计算e^x的近似值
*程序输入:e的方根
*程序输出: 近似值结果
*/
#include
#include
using namespace std;
int
main()
{
double
ex,x,p;
int
i;
cout<<
"请输入方根x的值:"
;
cin>>x;
ex=
0
;
p=
1
;
i=
0
;
while
(p>1e-
6
)
{
ex+=p;
++i;
p=p*x/i;
}
cout<<
"e的"
<
return
0
;
}
|
运行结果: