TO PRINT PATTERN TYPE 4

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



class Pattern4
{
public static void main(String[] args)
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=5;j++)
{  if(j<=6-i)
System.out.print("*");
    else
System.out.print(" ");
}
System.out.println();
}
}
}

Comments

Popular posts from this blog

Problem Statement Of Real Estate Use Cases

Problem Statement Of Bank Marketing analysis

Hadoop