- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个关于 C 编程的问题
我想编写一个程序计算 e 值,以便用户输入 n 值。
你知道;我们可以定义 x=pow(1+1/n,n) 对于 n=1,2.. 可以从数学上证明 x->e 为 n -> 无穷大。
我该怎么做?
我已经做到了这一点,我已经尝试过,但我没有像我说的那样工作:
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<math.h>
int main()
{
int i,n,x1;
printf("Enter a n value:");
scanf("%d", &n);
for (i = 0;; i++)
{
x1 = pow((1 + 1 / n), n);
printf("Values:%d",x1);
}
system("pause");
return 0;
}
最佳答案
1 / n
是具有两个整数操作数的表达式。如此执行整数除法。如果 n
等于 1
,则其计算结果为 1
。对于大于 1
的所有 n
值,此整数除法的计算结果为 0
。
您需要进行浮点除法,因此必须使至少一个操作数成为浮点值。例如
1.0 / n
您还需要将 x1
声明为浮点值并使用 %f
。尝试用整数变量来近似 e
是没有好处的。
我猜您在某些时候需要实现循环终止条件。就目前情况而言,您的循环毫无意义,因为循环内使用的任何值都不会改变。
这是一个可能正在朝着正确方向发展的计划:
#include<stdio.h>
#include<math.h>
int main(void)
{
for (int n = 1; n <= 1000; n++)
{
double e = pow(1 + 1.0 / n, n);
printf("n=%d, approximation to e=%.16f\n", n, e);
}
printf("true value of e=%.16f\n", exp(1.0));
return 0;
}
输出
n=1, approximation to e=2.0000000000000000n=2, approximation to e=2.2500000000000000n=3, approximation to e=2.3703703703703698n=4, approximation to e=2.4414062500000000n=5, approximation to e=2.4883199999999994n=6, approximation to e=2.5216263717421135n=7, approximation to e=2.5464996970407121n=8, approximation to e=2.5657845139503479n=9, approximation to e=2.5811747917131984n=10, approximation to e=2.5937424601000023..........n=991, approximation to e=2.7169116115768883n=992, approximation to e=2.7169129915688766n=993, approximation to e=2.7169143687840753n=994, approximation to e=2.7169157432307069n=995, approximation to e=2.7169171149169880n=996, approximation to e=2.7169184838514693n=997, approximation to e=2.7169198500421694n=998, approximation to e=2.7169212134981109n=999, approximation to e=2.7169225742266474n=1000, approximation to e=2.7169239322355936true value of e=2.7182818284590451
It's quite interesting to note that the rate of convergence is really poor. And the accuracy of the estimate can never be good because for large n
you will suffer round off in 1.0 + 1.0 / n
. This is absolutely not a useful way to approximate e
.
This version, using an infinite sum, converges much more rapidly:
#include<stdio.h>
#include<math.h>
int main(void)
{
double e = 0.0;
double increment = 1.0;
for (int n = 0; n <= 20; n++)
{
e += increment;
increment /= (n+1);
printf("n=%d, approximation to e=%.16f\n", n, e);
}
printf("true value of e=%.16f\n", exp(1.0));
return 0;
}
输出
n=0, approximation to e=1.0000000000000000n=1, approximation to e=2.0000000000000000n=2, approximation to e=2.5000000000000000n=3, approximation to e=2.6666666666666665n=4, approximation to e=2.7083333333333330n=5, approximation to e=2.7166666666666663n=6, approximation to e=2.7180555555555554n=7, approximation to e=2.7182539682539684n=8, approximation to e=2.7182787698412700n=9, approximation to e=2.7182815255731922n=10, approximation to e=2.7182818011463845n=11, approximation to e=2.7182818261984929n=12, approximation to e=2.7182818282861687n=13, approximation to e=2.7182818284467594n=14, approximation to e=2.7182818284582302n=15, approximation to e=2.7182818284589949n=16, approximation to e=2.7182818284590429n=17, approximation to e=2.7182818284590455n=18, approximation to e=2.7182818284590455n=19, approximation to e=2.7182818284590455n=20, approximation to e=2.7182818284590455true value of e=2.7182818284590451
关于计算用户n值的e值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22127985/
在为 Web 应用程序用例图建模时,为用户可以拥有的每个角色创建一个角色是否更好?或拥有一个角色、用户和一个具有特权的矩阵? guest < 用户 < 版主 < 管理员 1: guest 、用户、版主
我无法使用 Elixir 连接到 Postgres: ** (Mix) The database for PhoenixChat.Repo couldn't be created: FATAL 28P
这个问题已经有答案了: Group by field name in Java (7 个回答) 已关闭 7 年前。 我必须编写一个需要 List 的方法并返回 Map> . User包含 Person
感谢您的帮助,首先我将显示代码: $dotaz = "Select * from customers JOIN contracts where customers.user_id ='".$_SESS
我只想向所有用户中的一个用户显示一个按钮。我尝试了 orderByKey() 但没有成功! 用户模型有 id 成员,我尝试使用 orderByChild("id") 但结果相同! 我什至尝试了以下技巧
我们在工作中从 MongoDB 切换到 Postgres,我正在建立一个 BDR 组。 在这一步,我正在考虑安全性并尽可能锁定。因此,我希望设置一个 replication 用户(角色)并让 BDR
export class UserListComponent implements OnInit{ users; constructor(private userService: UserS
我可以使用 Sonata User Bundle 将 FOS 包集成到 sonata Admin 包中。我的登录功能正常。现在我想添加 FOSUserBundle 中的更改密码等功能到 sonata
在 LinkedIn 中创建新应用程序时,我得到 4 个单独的代码: API key 秘钥 OAuth 用户 token OAuth 用户密码 我在 OAuth 流程中使用前两个。 的目的是什么?最后
所以..我几乎解决了所有问题。但现在我要处理另一个问题。我使用了这个连接字符串: SqlConnection con = new SqlConnection(@"Data Source=.\SQLEX
我有一组“用户”和一组“订单”。我想列出每个 user_id 的所有 order_id。 var users = { 0: { user_id: 111, us
我已经为我的Django应用创建了一个用户模型 class User(Model): """ The Authentication model. This contains the u
我被这个问题困住了,找不到解决方案。寻找一些方向。我正在用 laravel 开发一个新的项目,目前正致力于用户认证。我正在使用 Laravels 5.8 身份验证模块。 对密码恢复 View 做了一些
安装后我正在使用ansible配置几台计算机。 为此,我在机器上本地运行 ansible。安装中的“主要”用户通常具有不同的名称。我想将该用户用于诸如 become_user 之类的变量. “主要”用
我正在尝试制作一个运行 syncdb 的批处理文件来创建一个数据库文件,然后使用用户名“admin”和密码“admin”创建一个 super 用户。 到目前为止我的代码: python manage.
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 6 年前。 Improv
我已在 Azure 数据库服务器上设置异地复制。 服务器上运行的数据库之一具有我通过 SSMS 创建的登录名和用户: https://learn.microsoft.com/en-us/azure/s
我有一个 ionic 2 应用程序,正在使用 native FB Login 来检索名称/图片并将其保存到 NativeStorage。流程是我打开WelcomePage、登录并保存数据。从那里,na
这是我的用户身份验证方法: def user_login(request): if request.method == 'POST': username = request.P
我试图获取来自特定用户的所有推文,但是当我迭代在模板中抛出推文时,我得到“User”对象不可迭代 观看次数 tweets = User.objects.get(username__iexact='us
我是一名优秀的程序员,十分优秀!