Q:

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

0

Star pattern 7

*

* *

*  *

*   *

*****

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 = 1; j <= i; j++) {
        if (j == 1 || j == i || i == 5) {
        System.out.print("*");
    } else {
    System.out.print(" ");
    }
    }
    System.out.println("");
    }
}
}

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

total answers (1)

Star pattern : 8، write java program to print the... >>
<< Star pattern : 6، write java program to print the...