用Java打印钻石形状

时间:2016-11-02 14:56:31

标签: java for-loop

我想在Eclipse的输出控制台上打印网格形状。

Example Diamond Shapes

基本上我从用户那里得到一个整数,它是网格单边框中的星数。

这里是我现在的代码:

import java.util.Scanner;

public class PrintDiamond {
    public static void main(String[] args) {
        System.out.print("Enter the number: ");
    Scanner scan = new Scanner(System.in);
            int num = scan.nextInt();
            num--;
                for (int i=num; i>0; --i){

                //Insert spaces in order to center the diamond
                for (int n=0; n<i; ++n){
                    System.out.print("  ");
                }
                    System.out.print(" *");
                for (int n=i; n<num; ++n){
                    System.out.print(" + ");
                    System.out.print(" ");
                }//Ending bracket of nested for-loop

                    System.out.println();
            }//Ending bracket of for loop

            //Print out a diamond shape based on user input
                for (int i=0; i<=num; ++i){   //<= to print the last asterisk

                //Insert spaces in order to center the diamond
                for (int n=0; n<i; ++n){
                    System.out.print("  ");
                }
                System.out.print(" *");
                for (int n=i; n<num; ++n){
                    System.out.print(" + ");
                    System.out.print(" ");
                }   //Ending bracket of nested for-loop

                    System.out.println();
            }       //Ending bracket of for loop            

    }

}

,输出为(对于int.6):

           *
         * +  
       * +   +  
     * +   +   +  
   * +   +   +   +  
 * +   +   +   +   +  
   * +   +   +   +  
     * +   +   +  
       * +   +  
         * +  
           *

4 个答案:

答案 0 :(得分:2)

您解决方案的一些提示:

  • 创建一个打印&#34;钻石行的方法&#34;对于给定的行宽和给定的钻石总宽度。
  • 创建用于打印给定数量空格的工具方法。
  • 你的主要方法应该有两个简单的循环:一个用于上半部分,一个用于下半部分。
  • 对于给定的两个参数wn,打印单个菱形行的方法很神奇。

这始终是一种很好的方法 - 将复杂问题减少到复杂性较低的问题 - 在这种情况下,通过创建方法并使用这些方法,例如在循环中。

在您打印单个钻石行的方法中,您需要检查您是否处于&#34;奇数&#34;或者&#34;甚至&#34;行。

答案 1 :(得分:2)

好的,这看起来像学校的校对,所以我不会写任何代码。

首先,您需要以伪代码或简单的英语来理解和写作您想要做的事情:

  • 有关如何绘制网格的说明。
    • 我应该打印多少行?
    • 每条线多长时间?
    • 我如何知道是否需要打印+
  • 您的计划的一般步骤。
    • 读取网格的大小,N。
    • 如果N < 1,再次询问(或退出程序)。
    • 如果N = 1或更大,请打印网格。
  • 程序的详细子步骤。
    • 打印网格
      • 循环行数。
      • 使用正确的当前行长度创建空数组/缓冲区/列表/字符串。
      • ...

因为现在看来你似乎没有想到任何一个。如果是这种情况,那么你的问题与Java无关,而是与基本的编程知识无关,如果我们只是为你编写算法,你将无法获得。

答案 2 :(得分:2)

以下是代码:

public static void main(String[] args) {
    System.out.print("Enter the number: ");
    Scanner scan = new Scanner(System.in);
    int num = scan.nextInt();
    final char[][] diamond = makeDiamond(num);
    for (int i = 0; i < diamond.length; i++) {
        for (int j = 0; j < diamond[i].length; j++) {
            System.out.print(diamond[i][j]);
        }
        System.out.println();
    }
}

public static char[][] makeDiamond(int n) {
    int width = 1 + 4 * (n - 1);
    int height = 1 + 2 * (n - 1);
    char[][] out = new char[height][width];
    int x0 = 2 * (n - 1);
    int y0 = n - 1;
    for (int i = 0; i < width; i += 2) {
        // Top borders
        int y1 = Math.abs(y0 - i / 2);
        out[y1][i] = '*';

        // Bottom borders
        int y2 = height - Math.abs(i / 2 - y0) - 1;
        out[y2][i] = '*';

        if ((x0 - i) % 4 == 0) {
            // Plus signs
            for (int j = y1 + 1; j < y2; j++) {
                out[j][i] = '+';
            }
        }
    }
    return out;
}

答案 3 :(得分:0)

著名人物的变体之一:

public static void main(String[] args) {
    printDiamond(0);
    printDiamond(2);
    printDiamond(5);
}

static void printDiamond(int n) {
    System.out.println("n=" + n);
    for (int i = -n; i <= n; i++) {
        for (int j = -n; j <= n; j++)
            if (Math.abs(i) + Math.abs(j) == n)
                System.out.print("*  ");
            else if (Math.abs(i) + Math.abs(j) < n && j % 2 == 0)
                System.out.print("+  ");
            else
                System.out.print("   ");
        System.out.println();
    }
}

输出(组合):

<头>
n=0 n=2 n=5
*  










      *        
* + *
* + *
* + *
*






               *                 
* + *
* + *
* + + + *
* + + + *
* + + + + + *
* + + + *
* + + + *
* + *
* + *
*

另见:How to draw a double empty ASCII rhombus?