Problem1071--C++语言 求和 倒数 6.5

1071: C++语言 求和 倒数 6.5

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

Description

求以下三数的和,保留2位小数 1~a之和 1~b的平方和 1~c的倒数和

Input

a b c

Output

1+2+...+a + 1^2+2^2+...+b^2 + 1/1+1/2+...+1/c

Sample Input Copy

100 50 10

Sample Output Copy

47977.93

Source/Category