打印出100到999的水仙花数

Posted 天道酬勤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印出100到999的水仙花数相关的知识,希望对你有一定的参考价值。

所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个水仙花数,因为153=1*1*1 + 5*5*5 + 3*3*3

 

 1 public class Flower
 2 {
 3     public static void main(String[] args)
 4     {
 5         int temp=0;
 6         System.out.println("水仙花数为:");
 7         for (int i=100;i<999 ;i++ )
 8         {
 9             temp = i;
10             int x= temp/100;//算出百位数,  因为x是int类型 所以小数省去
11             int y= temp%100/10;//算出十位数
12             int z= temp%10;//算出个位数
13             if (i==x*x*x+y*y*y+z*z*z)
14             {
15                 System.out.println(i);
16             }
17         }
18     }
19 }

 运行结果为:

以上是关于打印出100到999的水仙花数的主要内容,如果未能解决你的问题,请参考以下文章

C语言怎样编输出所有水仙花数范围100到999

每日算法 ---- 打印所有水仙花数

c语言编程题打印出所有的“水仙花数”所谓“水仙花数”是指一个三位数其各位数字立方和等于该数本身

打印水仙花数(narcissus number)

Java 期末考试

Java练习--水仙花数