hdu 2009 求数列的和

来源:互联网 发布:简述sql的特点 编辑:程序博客网 时间:2024/05/22 03:38
                              求数列的和

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 79327 Accepted Submission(s): 48185

Problem Description

数列的定义如下:
数列的第一项为n,以后各项为前一项的平方根,求数列的前m项的和。

Input

输入数据有多组,每组占一行,由两个整数n(n<10000)和m(m<1000)组成,n和m的含义如前所述。

Output

对于每组输入数据,输出该数列的和,每个测试实例占一行,要求精度保留2位小数。

Sample Input

81 4
2 2

Sample Output

94.73
3.41

#include <stdio.h>#include<math.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {    int n,m;    double sum,s;    while(scanf("%d%d",&n,&m)!=EOF)    {        sum=0.;        s=n;        for(;m>0;m--)        {            sum+=s;            s=sqrt(s);        }            printf("%.2lf\n",sum);    }    return 0;}
1 0
原创粉丝点击