码迷,mamicode.com
首页 > 其他好文 > 详细

多位水仙花数

时间:2014-07-01 11:27:48      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:blog   java   2014   for   har   file   

/**
 * 水仙花数
 * */
public class Daffodil {
	
	public static void main(String[] args) {
		int max = 9999 ; 
		int min = 10 ; 
		for(int x=min;x<max;x++){
			String temp = String.valueOf( x ) ;  
			int pow = temp.length() ; 
			char[] chars = temp.toCharArray() ;
			
			int all = 0 ;  
			for(char c : chars){
				int a = Integer.parseInt( String.valueOf(c) ) ; 
				all += Math.pow( a , pow ) ;
			}
			if(all == x){
				System.out.println( x + "是水仙花数" ) ;
			}
		}
	} 
}

多位水仙花数,布布扣,bubuko.com

多位水仙花数

标签:blog   java   2014   for   har   file   

原文地址:http://blog.csdn.net/hfmbook/article/details/36016165

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!