2015-10-22 83 views
1

因此,對於我的AP計算機科學課程,我們必須找到所有的快樂數字並在最後打印出來。我知道我可以更簡單地完成這些代碼,但是,這樣做對我來說更有意義。這是我的問題:在我的for循環中,它只運行第一個數字,如果它是一個快樂的數字,它將打印出所述數字,如果它不是不打印任何東西,但它不會去下一個數字。謝謝你的幫助!我的代碼如下:尋找快樂數字

public class HappyNumbers 
{ 
    public static void main(String [] args) 
    { 
     boolean done = false; 
     int sum = 0; 
     for (int x = 1; x < Integer.MAX_VALUE; x++) 
     { 
      String a = "" + x; 

      while (!done) 
      { 
       int length = a.length(); 

       if (length == 1) 
       { 
        int b = a.charAt(0) - '0'; 
        sum = (int)Math.pow(b,2); 
        int y = (int)sum; 
        a = "" + y; 

        if (y == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 

       } 


       else if (length == 2) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (y == 1) 
        { 
         System.out.println(x); 
         done = true; 

        } 
       } 

       else if (length == 3) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        sum =(int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (y == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 

       else if (length == 4) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 

       else if (length == 5) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 

       else if (length == 6) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        int g = a.charAt(5) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2) + Math.pow(g,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 

       else if (length == 7) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        int g = a.charAt(5) - '0'; 
        int h = a.charAt(6) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2) + Math.pow(g,2) + Math.pow(h,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 

        } 
       } 

       else if (length == 8) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        int g = a.charAt(5) - '0'; 
        int h = a.charAt(6) - '0'; 
        int i = a.charAt(7) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2) + Math.pow(g,2) + Math.pow(h,2) + Math.pow(i,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 
       else if (length == 9) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        int g = a.charAt(5) - '0'; 
        int h = a.charAt(6) - '0'; 
        int i = a.charAt(7) - '0'; 
        int j = a.charAt(8) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2) + Math.pow(g,2) + Math.pow(h,2) + Math.pow(i,2) + Math.pow(j,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 
        } 
       } 

       else if (length == 10) 
       { 
        int b = a.charAt(0) - '0'; 
        int c = a.charAt(1) - '0'; 
        int d = a.charAt(2) - '0'; 
        int e = a.charAt(3) - '0'; 
        int f = a.charAt(4) - '0'; 
        int g = a.charAt(5) - '0'; 
        int h = a.charAt(6) - '0'; 
        int i = a.charAt(7) - '0'; 
        int j = a.charAt(8) - '0'; 
        int k = a.charAt(9) - '0'; 
        sum = (int)(Math.pow(b,2) + Math.pow(c,2) + Math.pow(d,2) + Math.pow(e,2) + Math.pow(f,2) + Math.pow(g,2) + Math.pow(h,2) + Math.pow(i,2) + Math.pow(j,2) + Math.pow(k,2)); 
        int y = (int)sum; 
        a = "" + y; 
        if (sum == 1) 
        { 
         System.out.println(x); 
         done = true; 

        } 
       } 
      } 
     } 
    } 
} 
+0

您的代碼可能被陷在while循環設置

done = true; 

。你有沒有嘗試調試過,是否被設置爲true? – Levesque

+0

它被卡在else if循環中。所以它只打印或不打印第一個數字。我怎樣才能解決這個問題? – jmm8398

+0

else if語句不是循環,你的代碼不能卡在它們中。它是否陷入你的while循環?我建議你一步一步來弄清楚發生了什麼事。 – Levesque

回答

0

東陽你在排隊25

+0

這可能是問題所在,但它不是一個完整的解決方案。究竟需要什麼來修復該計劃?如果第25行被刪除,它會工作嗎? – honk