用python写水仙花数
时间: 2023-09-30 16:11:46 浏览: 14
Sure, 这是用 Python 写的水仙花数代码:
```python
for num in range(100, 1000):
temp = num
sum = 0
while temp > 0:
digit = temp % 10
sum += digit ** 3
temp //= 10
if num == sum:
print(num)
```
希望对你有帮助!
相关问题
用Python写水仙花数
当一个三位数的每个位上的数字的立方和正好等于该数时,这个数就被称为水仙花数。以下是用 Python 写的水仙花数程序:
```python
for num in range(100, 1000):
temp = num
sum = 0
while temp > 0:
digit = temp % 10
sum += digit ** 3
temp //= 10
if num == sum:
print(num)
```
输出结果:
```
153
370
371
407
```
用python写水仙花数的代码
以下是用 Python 写水仙花数的代码:
for num in range(100, 1000):
sum = 0
temp = num
while temp:
sum += (temp % 10) ** 3
temp //= 10
if num == sum:
print(num)
阅读全文