黑马程序员技术交流社区
标题:
for语句练习
[打印本页]
作者:
lostyou
时间:
2015-9-26 19:45
标题:
for语句练习
public class Demo3{
public static void main(String[] args){
for(int i=100;i<1000;i++){
if(isLotus(i))
System.out.print(i+" ");
}
System.out.println();
}
//判断水仙花数
private static boolean isLotus(int lotus){
int m = 0;
int n = lotus;
int sum = 0;
m = n/100;
n -= m*100;
sum = m*m*m;
m = n/10;
n -= m*10;
sum += m*m*m + n*n*n;
if(sum==lotus)
return true;
else
return false;
}
}
复制代码
作者:
maxwell247
时间:
2015-9-26 19:48
lotus是荷花。不是水仙花。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2