📅  最后修改于: 2023-12-03 15:00:02.337000             🧑  作者: Mango
该程序是用于计算Cosh(x)级数之和直至Nth项的程序,请输入x和n获取结果。
Cosh(x)的级数公式如下:
Cosh(x) = 1 + x^2/2! + x^4/4! + x^6/6! + ... + x^n/n!
下载该程序源代码。
在使用该程序前,请确保您已经安装好Python。
打开终端或命令行窗口,使用cd命令切换到程序源代码所在的文件夹。
在终端或命令行窗口中输入以下命令:
python cosh_sum.py
程序会要求您输入x和n,按照提示输入即可。
程序会输出Cosh(x)的级数之和直至Nth项的结果。
以下是该程序的代码实现:
import math
def cosh_sum(x, n):
result = 1
for i in range(1, n+1):
result += (math.pow(x, 2*i))/math.factorial(2*i)
return result
x = float(input("请输入x: "))
n = int(input("请输入n: "))
print("Cosh(x)的级数之和直至第{}项的结果为: {}".format(n, cosh_sum(x, n)))
程序中涉及到math模块,请确保您已经安装好Python。
程序中要求您输入x和n,请确保您按照提示输入。