python求水仙花数
时间: 2023-07-01 21:23:30 浏览: 37
水仙花数是指一个 n 位数 ( n≥3 ),它的每个位上的数字的 n 次幂之和等于它本身。例如,153 就是一个水仙花数,因为 1^3 + 5^3 + 3^3 = 153。
下面是 Python 代码实现:
```
for num in range(100, 1000):
sum = 0
temp = num
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):
# 将数字拆分成个位、十位、百位
digit1 = num // 100
digit2 = (num // 10) % 10
digit3 = num % 10
# 判断是否为水仙花数
if num == digit1 ** 3 + digit2 ** 3 + digit3 ** 3:
print(num)
```
运行结果:
```
153
370
371
407
```
python求水仙花数的个数
好的,可以使用以下代码来求解水仙花数的个数:
```python
count = 0
for i in range(100, 1000):
a = i // 100
b = (i // 10) % 10
c = i % 10
if a**3 + b**3 + c**3 == i:
count += 1
print(count)
```
运行这段代码,就可以得到100~999之间的水仙花数的个数。
阅读全文