public class Demo
{
public static void main(String[] args)
{
for (int i=100;i<1000;i++ )//遍历100~1000之内整数
{
int a=i/100;//获取百位上的数
int b=i/10%10;//获取十位上的数
int c=i%10;//获取个位上的数
int d=a*a*a+b*b*b+c*c*c;
if (d==a*100+b*10+c)
{
System.out.println(i+"是水仙花数");
}
}
}
}
希望有帮助!! |
|