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

FZU1058

时间:2015-04-07 00:41:47      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

其实这里主要就是long double的使用

因为用printf不怎么好输出,所以最好用cout输出

传送门:http://acm.fzu.edu.cn/problem.php?pid=1058

 

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<vector>
#include<queue>
#include<iostream>
#include<iomanip>
#include<algorithm>
using namespace std;
typedef long long LL;
typedef long double LDB;

int main(){
    int n;
    while(~scanf("%d",&n)){
        LDB ans=0;
        for(int i=1;i<=n;i++){
            ans+=(LDB)1/i;
        }
        cout<<fixed<<setprecision(12)<<ans<<endl;
    }
    return 0;
}

 

FZU1058

标签:

原文地址:http://www.cnblogs.com/csust-qwb/p/4397229.html

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