首页 > 其他 > 详细

ZOJ 1113

时间:2014-08-17 21:11:22      阅读:389      评论:0      收藏:0      [点我收藏+]

水题一道- -暴力做法、打表都可以0ms AC。

时间:0毫秒。

#include<iostream>
#include<iomanip>

using namespace std;

int main()
{
    double ans=1, temp=1;
    int i=0;
   
    cout<<"n e"<<endl;
    cout<<"- -----------"<<endl;
    cout<<i<<‘ ‘<<ans<<endl;
    for(i=1; i<=9; ++i)
    {
        temp/=i;
        ans+=temp;
        if(i<3) cout<<setprecision(9);
        else    cout<<fixed<<setprecision(9);
        cout<<i<<‘ ‘<<ans<<endl;
    }
   
    return 0;
}

 

ZOJ 1113,布布扣,bubuko.com

ZOJ 1113

原文:http://www.cnblogs.com/lostwinder/p/3918250.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!