首页 > 代码库 > ZOJ 1113
ZOJ 1113
水题一道- -暴力做法、打表都可以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;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。