簡體   English   中英

我需要編寫一個使用嵌套循環在一行上打印出兩種形狀的程序的幫助

[英]I need help writing a program that prints out two shapes on one line using nested loops

形狀應如下所示

在此處輸入圖片說明

到目前為止,這是我的代碼:

public class Diamonds {

    public static void main(String[] args) {
        for (int i = 1; i < 10; i += 2) {
            for (int j = 0; j < 9 - i / 2; j++) {
                System.out.print(" ");
            }

            for (int j = 0; j < i; j++) {
                System.out.print("*");
            }

            System.out.print("\n");
        }

        for (int i = 7; i > 0; i -= 2) {
            for (int j = 0; j < 9 - i / 2; j++) {
                System.out.print(" ");
            }

            for (int j = 0; j < i; j++) {
                System.out.print("*");
            }

            System.out.print("\n");
        }
    }
}

我無法獲得第二個形狀

為了不破壞這個問題的樂趣,我將解釋在不編寫任何代碼的情況下需要做的事情。

為了獲得第二個形狀,您需要在現有的兩個“外部”循環中分別添加兩個嵌套的for循環。

第三個循環將產生固定數量的空格。 請注意,第一個形狀的右邊緣和第二個形狀的左邊緣之間的距離是恆定的,因此您的第三個循環將很容易編寫代碼。

第四個循環將像您的第一個循環一樣循環,但是它們會改變位置:第一個外循環中的第一個內循環將是第二個外循環中的第四個內循環,反之亦然。

通過檢查右側的形狀,我們可以注意到,對於左側形狀的行中的每N星號,右側的星號都有10 - N ,因此,將您的代碼進行擴展,我們可以得到:

public class Diamonds {
    public static final String SPACE = "        ";
    public static void main(String[] args) {
        for (int i = 1; i < 10; i += 2) {
            for (int j = 0; j < 9 - i / 2; j++)
                System.out.print(" ");

            for (int j = 0; j < i; j++)
                System.out.print("*");

            System.out.print(SPACE);

            for (int j = 0; j < 10 - i; j++)
                System.out.print("*");

            System.out.print("\n");
        }

        for (int i = 7; i > 0; i -= 2) {
            for (int j = 0; j < 9 - i / 2; j++)
                System.out.print(" ");

            for (int j = 0; j < i; j++)
                System.out.print("*");

            System.out.print(SPACE);

            for (int j = 0; j < 10 - i; j++)
                System.out.print("*");

            System.out.print("\n");
        }
    }
}

如果我們提取一些通用代碼:

public class Diamonds {
    public static final String SPACE = "        ";
    public static void main(String[] args) {
        for (int i = 1; i < 10; i += 2) {
            drawLine(i);

            System.out.print("\n");
        }

        for (int i = 7; i > 0; i -= 2) {
            drawLine(i);

            System.out.print("\n");
        }
    }

    private static void drawLine(int i) {
        for (int j = 0; j < 9 - i / 2; j++)
            System.out.print(" ");

        for (int j = 0; j < i; j++)
            System.out.print("*");

        System.out.print(SPACE);

        for (int j = 0; j < 10 - i; j++)
            System.out.print("*");
    }
}

嘗試這個 :

public static void main(String[] args) {

        for (int i = 9; i > 0; i -= 2) {
            for (int j = 0; j < 9 - i / 2; j++)
                System.out.print(" ");

            for (int j = 0; j < i; j++)
                System.out.print("*");

            System.out.print("\n");
        }
        for (int i = 2; i < 10; i += 2) {
            for (int j = 0; j < 9 - i / 2; j++)
                System.out.print(" ");

            for (int j = 0; j <= i; j++)
                System.out.print("*");

            System.out.print("\n");
        }

    }

輸出:

     *********
      *******
       *****
        ***
         *
        ***
       *****
      *******
     *********
public class ReverseDiamond {

    public static void main(String[] ar) {

        int rows = 10;
        ReverseDiamond diamond = new ReverseDiamond();          

        for(int i = 0; i < rows; i++)
            diamond.printLine(rows, i); 

        for(int i = rows - 2; i >= 0; i--)
            diamond.printLine(rows, i);         
    }



    private void printLine(int rows, int currRow) {

        for(int space = 1; space <= currRow; space++)
            System.out.print(" ");

        for(int star = 1; star < 2 * (rows - currRow); star++)
            System.out.print("*");

        System.out.println();
    }
}

您可能會喜歡:

public class Diamonds {
 public static void main(String[] args) {
    int totalStars = 9;
    int rows = 9;

    for (int r = 0,stars=-1,gap=totalStars; r < rows; r++   ) {
        stars+= (r<=rows/2) ?2:-2;
        gap=totalStars-stars;

        printChars(' ', gap);
        printChars('*', stars);
        printChars(' ', gap);
        int gap2=stars+1;
        int stars2=gap+1;
        printChars(' ', gap2);
        printChars('*', stars2);
        printChars(' ', gap2);
        System.out.println();
    }
 }

 private static void printChars(char c ,int times) {
    for (int i = 0; i < times; i++) {
        System.out.print(c);
    }
 }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM