用do-while循环按公式e=1+1/1!+1/2!+1/3!+…+1/n!计算 e 的值(精度为 1e-6)
时间: 2023-11-16 17:06:43 浏览: 293
do while??????? ?? ??? ??.rar_C++_Meaning
使用do-while循环按公式e=1+1/1!+1/2!+1/3!+…+1/n!计算 e 的值(精度为 1e-6)的方法如下:
1. 定义变量e、i、factorial和item,其中e的初值为1,i的初值为1,factorial的初值为1。
2. 使用do-while循环,循环条件为item的值大于等于1e-6。
3. 在循环体内,计算item的值,然后将其加到e中。
4. 计算i的阶乘,并将其赋值给factorial。
5. 将i加1,并将factorial除以i。
6. 将item的值赋给1/factorial。
7. 输出e的值。
阅读全文