Q:

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

0

Star pattern : 4

*****

 ****

  ***

   **

    *

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