1428: 编写函数求表达式的值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:6782
Solved:4985
Description
有如下表达式 s = 1 + 1 / 3 + (1 * 2) / (3 * 5) + (1 * 2 * 3) / (3 * 5 * 7) + .... + (1 * 2 * 3 * .... * n) / (3 * 5 * 7 * ... * (2 * n + 1)).
编写函数求给出的n所对应的表达式s的值.
Input
一个整数n
Output
输出表达式的值,保留小数点后10位的值.
Sample Input Copy
4
Sample Output Copy
1.5492063492