TO PRINT PATTERN TYPE 23

1   
10   
101 
1010 
10101
101010




class Pattern23
{

public static void main(String[] args)

      for(int i=1;i<=6;i++)
      { 
      for(int j=1;j<=6;j++)
      {
      if(j<=i)
      {  if(j%2==0)
                     System.out.print("0");
                     else
                     System.out.print("1");
      }
      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