public class Daffodil {
我們提供的服務有:網(wǎng)站設計制作、成都網(wǎng)站制作、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、常熟ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的常熟網(wǎng)站制作公司
/**
*
* @param
* @return void
* @param args
* desc
*/
public static void main(String[] args) {
for (int n = 100; n 999; n++) {
int a = n / 100;
int b = (n % 100) / 10;
int c = n % 10;
if(Math.pow(a, 3)+Math.pow(b,3)+Math.pow(c,3)==n){
System.out.println(n);
}
}
}
}
按一下代碼執(zhí)行:
public class woo {
public static void main(String args[]) {
System.out.println("100-1000中的水仙花數(shù)有:");
for(int i=100;i1000;i++){
int single? = i%10;
int ten = i/10%10;
int hundred = i/10/10%10;
//水仙花數(shù)判斷要求
if(i == (single*single*single+ten*ten*ten+hundred*hundred*hundred)){
System.out.println(i);
}
}
}
}
擴展資料:
水仙花數(shù)只是自冪數(shù)的一種,嚴格來說3位數(shù)的3次冪數(shù)才稱為水仙花數(shù)。
一位自冪數(shù):獨身數(shù)
兩位自冪數(shù):沒有
三位自冪數(shù):水仙花數(shù)
四位自冪數(shù):四葉玫瑰數(shù)
五位自冪數(shù):五角星數(shù)
六位自冪數(shù):六合數(shù)
七位自冪數(shù):北斗七星數(shù)
八位自冪數(shù):八仙數(shù)
九位自冪數(shù):九九重陽數(shù)
十位自冪數(shù):十全十美數(shù)
參考資料:
水仙花數(shù)——百度百科
你好,代碼如下:
public class ShuiXianHua {
public static void calculate(int num) {
int[] nums;
int temp = 0, cur;
int min = (int) Math.pow(10, num - 1);
int max = (int) Math.pow(10, num) - 1;
for (int i = min; i = max; i++) {
temp = 0;
nums = new int[num];
cur = i;
for (int j = 0; j num; j++) {
nums[j] = cur % 10;
cur /= 10;
}
for (int j = 0; j nums.length; j++) {
temp += (int) Math.pow(nums[j], num);
}
if (temp == i) {
System.err.println(i);
}
}
}
public static void main(String[] args) {
System.out.println("6位的水仙花數(shù):" );
calculate(6) ;
}
}