算法应用---水仙花数

package com.sinosoft.thesecondofaugust;
/**
 * 水仙花:
 * 水仙花数是一个三位数,每一位上的数的立方相加等于该数本身。
 * 例如:1*1*1+5*5*5+3*3*3=153
 * @author lescen
 *
 */
public class Wflower {
	public static void main(String[] args) {
		int a=0,b=0,c=0;
		System.out.print("水仙花数是:");
		for(int i=100;i<1000;i++){//遍历所有三位数
			a=i/100;//获取百位
			b=i%100/10;//获取十位
			c=i%100%10;//获取个位
			a=a*a*a;
			b=b*b*b;
			c=c*c*c;
			if((a+b+c)==i){//符合水仙花的条件
				System.out.print(" "+i);
			}
		}
	}

}

结果:

算法应用---水仙花数_第1张图片

你可能感兴趣的:(算法)