题目链接:http://poj.org/problem?id=1517
根据公式计算输出就是了,不过这个公式是求e的,还找了下e的计算原理!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std;
int main() { printf("n en- -----------n0 1n1 2n2 2.5n"); double s=2.5,t=6; int a=3; while(a<10) { printf("%d %.9lfn",a,s=s+1/t); t*=++a; } }
|