Tuesday, 10 June 2014

Pattern Printing

1 2 3 4 5
1 2 3 4
1 2 3
1 2
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
---------------------------------------
public class Pattern
{
public static void main( String arg[])
{
int ck=0,c=2;
        while(c>0)
{
        if(ck==0)
{
            for(int i=1,r=5;i<=5;i++,r--)
{
            for(int j=1;j<=r;j++)
{
                System.out.print(j + " ");
            }
            System.out.println();
}
            ck++;
        }
else
{
            for(int i=2;i<=5;i++)
{
            for(int j=1;j<=i;j++)
{
                System.out.print(j + " ");
       }
            System.out.println();
        }
        }
        c--;
      }

}
}

No comments:

Post a Comment