经典的水仙花问题
Posted 辰峰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了经典的水仙花问题相关的知识,希望对你有一定的参考价值。
代码如下 :
package ClassDemo; public class Homework01 {
public static void main(String[] args) {
int maxValue = 1000;
for (int i = 1; i < maxValue; i++) {
String strOfVar = String.valueOf(i);
double sum = 0.0;
for (int j = 0; j < strOfVar.length(); j++)
sum += Math.pow(Double.parseDouble(strOfVar.substring(j, j + 1)), 3.0);
if (sum == (double) i) {
System.out.println(i + "是水仙花数");
}
}
}
}
以上是关于经典的水仙花问题的主要内容,如果未能解决你的问题,请参考以下文章