HDU 2009 求数列的和

 1 #include<stdio.h>
 2 #include<math.h>
 3 int main()
 4 {
 5     int i,n;
 6     double x,s;
 7     while(scanf("%lf%d",&x,&n)!=EOF)
 8     {
 9         for(s=0.0;n--;x=sqrt(x))
10           s+=x;
11           printf("%.2lf\n",s);
12     }
13     return 0;
14 } 

posted on 2012-08-03 17:56  mycapple  阅读(231)  评论(0编辑  收藏  举报

导航