询问一个python寻找完全数的程序

发布网友 发布时间:2022-04-22 11:41

我来回答

3个回答

懂视网 时间:2022-05-11 05:12

本文实例讲述了Python判断Abundant Number的方法。分享给大家供大家参考。具体如下:

Abundant Number,中文译成:盈数(又称 丰数, 过剩数abundant number)是一种特殊的 自然数,除去它本身以外的一切正约数的和大于它本身。

介绍见百度百科: http://baike.baidu.com/view/1596350.htm

#Checks if a number is abundant or not
#An abundant number is the number of which sum of
#factors(including itself) is greater than twice the number
def abundant(n):
 sum_factors=0
 for i in range(1,n+1):
 if n%i==0:
 #finds out the factors
 f=i
 sum_factors += f 
 if sum_factors>2*n:
 #condition for abundant number
 print "This is an Abundant Number!"
 else:
 print "This is not an Abundant Number!"

希望本文所述对大家的Python程序设计有所帮助。

热心网友 时间:2022-05-11 02:20

热心网友 时间:2022-05-11 03:38

while的退出条件 是theNum<=topNum 可是在整个while中这个两个变量都没变过 theNum=theNum+1写在最后什么意思。。。 while只能管到divisor=divisor+1追问我把两个空行去掉了,但还是一直在运行,开始输入的topNum似乎没有作用呀。。。

追答topNum=raw_input("What is the upper number for the range:")
topNum=int(topNum)
theNum=2
while theNumsumOfDivisors:
print theNum,"is deficient"
theNum=theNum+1

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com