当前位置:   article > 正文

python 1096: 水仙花数(函数专题)_1096: 水仙花数(函数专题)

1096: 水仙花数(函数专题)
while True:
    m,n=map(int,input().split())
    e=[]
    for i in range(m,n+1):
        b=i//100
        c=(i%100)//10
        d=i%10
        if i==b**3+c**3+d**3:
            e.append(str(i))
    if e==[]:
        print('no')
    else:
        print(' '.join(e))
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号