Q:

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

0

Star pattern 9

    *    

   ***   

  *****  

 *******

*********

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, k;
    for (i = 1; i <= 5; i++) {
    for (j = i; j < 5; j++) {
        System.out.print(" ");
    }
        for (k = 1; k < (i * 2); k++) {
    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 : 10، write java program to print th... >>
<< Star pattern : 8، write java program to print the...