Q:

Star pattern : 16، write java program to print the following pattern

0

Star pattern 16

    *
   * *
  *   *
 *     *
*       *
 *     *
  *   *
   * *
    *

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

class StarTriangle {
public static void main(String[] args) {
    int i, j;

    for (i = 1; i <= 5; i++) {
    for (j = 5; j > i; j--) {
        System.out.print(" ");

    }
        System.out.print("*");
    for (j = 1; j < (i - 1) * 2; j++) {
        System.out.print(" ");

    }
        if (i == 1) System.out.println("");
    else System.out.println("*");
    }

    for (i = 4; i >= 1; i--) {
        for (j = 5; j > i; j--) {
        System.out.print(" ");
    }
        System.out.print("*");
    for (j = 1; j < (i - 1) * 2; j++) {
    System.out.print(" ");
    }
        if (i == 1) System.out.println("");
    else System.out.println("*");
    }

}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Star pattern : 15، write java program to print th...