码迷,mamicode.com
首页 > 编程语言 > 详细

java循环练习:水仙花数

时间:2016-04-10 19:40:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:java   循环练习   水仙花数   

package practiceGO;
/*
 *5、算水仙花数(100-999):表示三位数的数字,个位的三次方+十位的三次方+百位的三次方=这个数本身 
 */
public class Cto {
	public static void main(String[] args) {
		int first,second,third;
		for(int i=100; i<=999; i++){
			first = (i/100);
			second = (i-first*100)/10;
			third = i%10;		
			if (Math.pow(first, 3)+Math.pow(second, 3)+Math.pow(third, 3) == i) {
				System.out.println(i+"是水仙花数");
			}
		}
	}
}

运行结果:

153是水仙花数
370是水仙花数
371是水仙花数
407是水仙花数


java循环练习:水仙花数

标签:java   循环练习   水仙花数   

原文地址:http://11317783.blog.51cto.com/11307783/1762315

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