文章
4
粉丝
169
获赞
3
访问
33.8k
# 输入数据有多组,每组占一行,包括两个整数m和n(100<=m<=n<=999), # .输入为0 0时表示输入数据结束(不需要输出)。 tag=0 def isflower(i): a=i//100 b=i//10%10 c=i%10 if pow(a,3)+pow(b,3)+pow(c,3)==i: return True else: return False while 1: a,b=map(int,input().split()) if a==b==0: break else: for i in range(a,b+1): if isflower(i): print(i,end=' ') else: tag+=1 if i==b and tag!=b+1-a: print() if tag==b+1-a: print('no')
登录后发布评论
暂无评论,来抢沙发