0

我知道有一篇与此类似的帖子,但根据答案,我不能同时将答案应用到我当前的课程中,或者理解其余的答案。

我需要使用嵌套的“for 循环”创建一个程序,该程序创建一个像这样的输出(只是对称的)。我一直试图让这个工作整整两个晚上,但无法弄清楚......

               1 
             1 2 1 
            1 2 4 2 1 
          1 2 4 8 4 2 1 
        1 2 4 8 16 8 4 2 1 
      1 2 4 8 16 32 16 8 4 2 1 
   1 2 4 8 16 32 64 32 16 8 4 2 1 
1 2 4 8 16 32 64 128 64 32 16 8 4 2 1 

我将非常感谢任何帮助!!!

public class PyramidOfDoom { 
    public static void main(String[] args) 
        int k = 2; 
        int totalWidth = 8; 
        for (int row = 1; row <= totalWidth; row++) { 
            for (int col = 1; col <= totalWidth; col++) { 
                if (col <= totalWidth - row) { 
                    System.out.print(" "); 
                } else { 
                    System.out.print(k);; 
                } 
            } 
            System.out.println(); 
        } 
    } 
}
4

2 回答 2

1

我认为它可以通过简单的步骤来完成,例如 1. 打印前导空格 2. 打印递增数字 3. 打印递减数字 4. 打印尾随空格 5 打印新行。

示例代码(概念)如下。

    int row = 10;
    for(int i=1; i<=numRow ; i++){
       int num = 1;
       for(int j=0; j<numRow- i; j++ ){
           System.out.print("   ");
       }
       for(int j=numRow-i+1; j<=numRow ; j++ ){
           System.out.print(num+" ");
           num=num*2;
       }
       num=num/2;
       for(int j=numRow+1; j<numRow+i; j++ ){
           num=num/2;
           System.out.print(num+" ");
       }
       for(int j=numRow+i+1; j<=numRow*2; j++ ){
           System.out.print("  ");
       }
       System.out.print("\n");
    }
于 2012-10-11T01:09:43.050 回答
0

你根本没有改变k。您需要不断将其乘以 2,直到到达行的中间,然后开始将其除以 2。就目前而言,在您的System.out.println(k). :)

此外,您的System.out.println(k);;. 这对我来说似乎很奇怪,但我认为它会编译实际上是有道理的。

于 2012-10-11T01:13:12.047 回答