1325: 【循环】求和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:133
Solved:98
Description
输入一个正整数n,编程求1+1/2+1/3+...+1/n ,结果保留两位小数。
Input
输入一个正整数n
Output
1+1/2+1/3+...+1/n的值
Sample Input Copy
5
Sample Output Copy
2.28