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

java经典习题3

时间:2020-02-24 18:47:49      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:sys   string   lse   水仙花数   stat   void   数字   等于   class   

/*
题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。
*/
public class Class3 {
public static void main(String[] args){
int a;
int b;
int c;
System.out.println("水仙花数为:");
for(int i = 100; i <= 999; i++){
a = i/100;
b = (i - a*100)/10;
c = i - 100*a - 10*b;
if(i == (Math.pow(a,3) + Math.pow(b,3) + Math.pow(c,3))){
System.out.println(i);
}else{
continue;
}
}
}
}

java经典习题3

标签:sys   string   lse   水仙花数   stat   void   数字   等于   class   

原文地址:https://www.cnblogs.com/zhuozige/p/12357885.html

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