博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
航电1012 u Calculate e
阅读量:6501 次
发布时间:2019-06-24

本文共 1032 字,大约阅读时间需要 3 分钟。

u Calculate e

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 39017    Accepted Submission(s): 17700

Problem Description
A simple mathematical formula for e is
where n is allowed to go to infinity. This can actually yield very accurate approximations of e using relatively small values of n.
 

 

Output
Output the approximations of e generated by the above formula for the values of n from 0 to 9. The beginning of your output should appear similar to that shown below.
 

 

Sample Output
n e - ----------- 0 1 1 2 2 2.5 3 2.666666667 4 2.708333333
 

 

Source
#include
double mul(double x){ double sum=1; for(int i=1;i<=x;i++) sum*=i; return sum;}int main(){ int j; double i,e=0,k; printf("n e\n"); printf("- -----------\n"); printf("0 1\n"); printf("1 2\n"); printf("2 2.5\n"); for(j=0;j<10;j++) { e+=1/mul(j); if(j>2) printf("%d %11.9f\n",j,e); } return 0;}

 

 

转载于:https://www.cnblogs.com/cniwoq/p/6770997.html

你可能感兴趣的文章
高效e人注册码 EfficientPIM Pro 5.0 Build 505
查看>>
[视频]MAC中如何单独放大文本字体
查看>>
(C#)为什么要封装?
查看>>
DHCP服务器设置教程
查看>>
iptables简介以及七层过滤
查看>>
grep及正则表达式
查看>>
我的友情链接
查看>>
人因梦想而伟大!
查看>>
win7环境下苍南社保网上申报***设置
查看>>
python redis模块
查看>>
Android遍历获取Office格式(Word,Excel,PPT,PDF)的文件并打开
查看>>
编程题:输入英文月份单词,输出对应月的数字形式。
查看>>
当用户管理系统遇上python和mongodb后……
查看>>
使opensuse界面不显示中文
查看>>
【swift3.0】【一秒学会】- 代理使用
查看>>
荷露叮咚wp建站系列视频课程.3WordPress功能菜单介绍
查看>>
OSPF转发地址研究
查看>>
nginx proxy_redirect指令功能
查看>>
缓存算法及Redis、Memcached、Guava、Ehcache中的算法
查看>>
SQL Server Profiler使用教程,通俗易懂才是王道
查看>>