1690: 【循环】调和级数(harmony)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:20 Solved:15

Description

    正整数n,输出H(n) = 1 + 1/2 + 1/3 + …… + 1/n的值,保留3位小数。例如n=3时答案为1.833

Input

    一个正整数n,0<n<=104

Output

    H(n) = 1 + 1/2 + 1/3 + …… + 1/n的值,保留3位小数。

Sample Input Copy

3

Sample Output Copy

1.833