用python写水仙花数
时间: 2023-10-02 13:04:44 浏览: 84
好的,我可以回答这个问题。水仙花数是指一个 n 位数 ( n ≥ 3 ),它的每个位上的数字的 n 次幂之和等于它本身。例如,153 就是一个水仙花数,因为 $1^3 + 5^3 + 3^3 = 153$。以下是用 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 写的水仙花数程序:
```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)
阅读全文