2613: C语言程序设计教程(第三版)课后习题6.5
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
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