python实现的水仙花数

# -*- coding: utf-8 -*-
#下面的程序演示的是水仙花数
#水仙花数是101-999中,三个位数的立方和等于这个数本身
class flower:
    @classmethod    
    def rwprint(self):
        for i in range(101,999):
            index1=i/100;
            index2=(i%100)/10;
            index3=i%10;
            if((index1**3+index2**3+index3**3)==i):    
                print(i),
flower().rwprint();

 

python实现的水仙花数_第1张图片

你可能感兴趣的:(python实现的水仙花数)