TO PRINT PATTERN1
*
**
***
****
*****
class Pattern1
{
public static void main(String[] args)
{
for(int i=0;i<5;i++)
{
for(int j=0;j<=i;j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
**
***
****
*****
class Pattern1
{
public static void main(String[] args)
{
for(int i=0;i<5;i++)
{
for(int j=0;j<=i;j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
Comments
Post a Comment