码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 2009

时间:2017-09-02 19:08:42      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ace   amp   sqrt   str   include   php   math.h   log   code   

  http://acm.hdu.edu.cn/showproblem.php?pid=2009

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<queue>
#include<stack>
#include<algorithm>
#define PI 3.1415927
using namespace std;

int main()
{
    double n,m,i;
    while(scanf("%lf%lf",&n,&m)!=EOF)
    {
        double s=0;
        for(i=m;i>0;i--)//逆推
        {
            s+=n;
            n=sqrt(n);
        }
        printf("%.2lf\n",s);
    }
    return 0;
}

 

  

hdu 2009

标签:ace   amp   sqrt   str   include   php   math.h   log   code   

原文地址:http://www.cnblogs.com/hhkobeww/p/7467253.html

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