# for i in range(100,1000):
# #取百位数字
# x=i//100
# #取十位数字
# y=i//10%10
# #取个位数
# z=i%10
# if x**3+y**3+z**3==i:
# print(f'{i}是水仙花数')
#使用while循环
number=0 #初始化变量
while number<1000:
x = number // 100
y = number // 10 % 10
z = number % 10
if x**3+y**3+z**3==number:
print(f'{number}是水仙花数')
number+=1
其实可以打表{:301_998:} 好家伙,想起来了最开始大一学c++的时候了 前几天Matlab考到了 为啥我学Python时没有教过这个= = 我记得谭浩强C语言好像教过这个{:301_978:}
页:
[1]
2