Python程序:检查数字是否是Krishnamurthy数字

创新互联python教程:

亳州网站建设公司创新互联,亳州网站设计制作,有大型网站制作公司丰富经验。已为亳州成百上千提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的亳州做网站的公司定做!

编写一个 Python 程序来检查这个数字是不是一个 Krishnamurthy 数字,或者是否使用 while 循环。如果数的阶乘之和等于它自己,那么任何数都是 Krishnamurthy 数。在这个 Python 例子中,我们使用 while 循环将数字分成数字。接下来,数学阶乘函数找到每个数字的阶乘。if 条件检查单个数字的阶乘之和是否等于一个数字。如果是真的,这是一个 Krishnamurthy 数字。

import math

Number = int(input("Enter the Number to Check Krishnamurthy Number = "))
Temp = Number
Sum = 0

while Temp > 0:
    fact = 1
    i = 1
    rem = Temp % 10
    fact = math.factorial(rem)
    Sum = Sum + fact
    Temp = Temp // 10

if Sum == Number:
    print("\n%d is a Krishnamurthy Number." %Number)
else:
    print("%d is Not a Krishnamurthy Number." %Number)

在这个 Python 示例中,我们移除了数学阶乘函数,并使用嵌套的 while 循环来检查该数是否是 Krishnamurthy 数。

Number = int(input("Enter the Number to Check Krishnamurthy Number = "))
Sum = 0
Temp = Number

while Temp > 0:
    fact = 1
    i = 1
    rem = Temp % 10

    while i <= rem:
        fact = fact * i
        i = i + 1
    print('Factorial of %d = %d' %(rem, fact))
    Sum = Sum + fact
    Temp = Temp // 10

print("The Sum of the Digits Factorials = %d" %Sum)

if Sum == Number:
    print("\n%d is a Krishnamurthy Number." %Number)
else:
    print("%d is Not a Krishnamurthy Number." %Number)
Enter the Number to Check Krishnamurthy Number = 40585
Factorial of 5 = 120
Factorial of 8 = 40320
Factorial of 5 = 120
Factorial of 0 = 1
Factorial of 4 = 24
The Sum of the Digits Factorials = 40585

40585 is a Krishnamurthy Number.

当前文章:Python程序:检查数字是否是Krishnamurthy数字
转载注明:http://www.shufengxianlan.com/qtweb/news2/530002.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联