Problem1062--求 1 + 1/2! +...+ 1/n!

1062: 求 1 + 1/2! +...+ 1/n!

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

输入一个正整数 repeat (0<repeat<10),做repeat 次下列运算:
输入 1 个正整数n,计算 s 的前n 项的和(保留 4 位小数)。
s = 1 + 1/2! +...+ 1/n!

Input

见sample

Output

见sample

Sample Input Copy

1
2

Sample Output Copy

1.5000

Source/Category