当前位置:编程学习 > C/C++ >>

杭电ACm求数列的和2009

[cpp]  
#include <iostream>  
#include<stdio.h>  
#include <cmath>  
using namespace std;  
int main()  
{  
    double n,m,t=0;  
    while (cin>>n>>m&&n<10000&&m<1000)  
    {  
        t=0;  
        while (m--)  
        {  
            t=t+n;  
            n=sqrt(n);  
        }  
        printf("%.2f\n",t);  
    }  
return 0;  
}  
 
补充:软件开发 , C++ ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,