1. 程式人生 > >python中3位數中的水仙花數,和5位數中回文數的個數

python中3位數中的水仙花數,和5位數中回文數的個數

and mce del tro 位數 ron 個數 size str

3位數中的水仙花數打印
num=100
e=0
while num<1000:
b=num%10
c=num//10%10
d=num//100
if b**3+c**3+d**3==num:
e+=1
print (num)
num+=1
print (e)


5位數中的回文數的個數
num=10000
e=0
while num<=99999:
a=num//10000
b=num//1000%10
c=num%100//10
d=num%10

if a==d and b==c:
e+=1
print(num)
num += 1
print(e)
 

python中3位數中的水仙花數,和5位數中回文數的個數