码迷,mamicode.com
首页 > 编程语言 > 详细

hdu2009 求数列的和【C++】

时间:2018-07-18 17:17:15      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ble   inpu   ted   title   put   组成   panel   math   pac   

求数列的和

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


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
 1 #include<cstdio>
 2 #include<cmath>
 3 using namespace std;
 4 int main()
 5 {
 6     int n,m;
 7     while(scanf("%d %d",&n,&m)!=EOF)
 8     {
 9         double sum = 0.0;
10        double temp = n;
11         while(m--)
12         {
13             sum += temp;
14             temp = sqrt(temp);
15         }
16         printf("%.2lf\n",sum);
17     }
18     return 0;
19 }

 

hdu2009 求数列的和【C++】

标签:ble   inpu   ted   title   put   组成   panel   math   pac   

原文地址:https://www.cnblogs.com/knmxx/p/9329348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!