java計算自冪數和水仙花數_java

來源:互聯網
上載者:User

(例如:當n為3時,有1^3 + 5^3 + 3^3 = 153,153即是n為3時的一個自冪數)
n為1時,自冪數稱為獨身數。
n為2時,沒有自冪數。
n為3時,自冪數稱為水仙花數。
n為4時,自冪數稱為玫瑰花數。
n為5時,自冪數稱為五角星數。
n為6時,自冪數稱為六合數。
n為7時,自冪數稱為北鬥七星數。
n為8時,自冪數稱為八仙數。
n為9時,自冪數稱為九九重陽數。
n為10時,自冪數稱為十全十美數。

複製代碼 代碼如下:

/*
 * 自冪數
 * 自冪數是指一個 n 位元,它的每個位上的數位 n 次冪之和等於它本身。
 * (例如:當n為3時,有1^3 + 5^3 + 3^3 = 153,153即是n為3時的一個自冪數)
 */
import java.util.Scanner;

public class 自冪數 {

 public static void main(String[] args) {
  Scanner input = new Scanner(System.in);
  System.out.println("請輸入您所要查的自冪數位元:");
  int n = input.nextInt();// 接收數字位元
  // 定義一數字number,從10^(n-1)開始自加,到10^n結束
  switch (n) {
  case 1:
   System.out.println("獨身數:");
   System.out.print("0" + "\t");
   break;
  case 2:
   System.out.println("兩位自冪數:");
   System.out.println("沒有自冪數!");
   break;
  case 3:
   System.out.println("水仙花數:");
   break;
  case 4:
   System.out.println("玫瑰花數:");
   break;
  case 5:
   System.out.println("五角星數:");
   break;
  case 6:
   System.out.println("六合數:");
   break;
  case 7:
   System.out.println("北鬥七星數:");
   break;
  case 8:
   System.out.println("八仙數:");
   break;
  case 9:
   System.out.println("九九重陽數:");
   break;
  case 10:
   System.out.println("十全十美數:");
   break;
  default:
   System.out.println("其它自冪數:");
   break;
  }
  for (int number = (int) Math.pow(10, n - 1); number < Math.pow(10, n); number++) {
   // 判斷條件:數字number的位元為n
   if (String.valueOf(number).length() == n) {
    double num = 0;
    for (int i = 0; i < n; i++) {
     int temp = (int) (number / Math.pow(10, i)) % 10;
     num += Math.pow(temp, n);
    }
    if (number == num) {
     System.out.print(number + "\t");
    }
   }
  }
  input.close();
 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.