Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Submit Pattern21 #21

Closed
ErSKS opened this issue Jul 27, 2017 · 14 comments
Closed

Submit Pattern21 #21

ErSKS opened this issue Jul 27, 2017 · 14 comments

Comments

@ErSKS
Copy link
Owner

ErSKS commented Jul 27, 2017

pattern21

@jagdish4249
Copy link

package pattern19;

/**
*

  • @author jagdish
    */
    public class Pattern19 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int l = 2;
      for (int i = 2; i >= 1; i--) {
      for (int j = 3; j >= 1; j--) {
      if(i<j){
      if(j%2==0)
      System.out.print("0");
      else
      System.out.print("1");
      }
      else{
      System.out.print(" ");
      }
      }

       for (int j = 1; j <= 2; j++) {
       if(i>j)
           System.out.print(" ");
       else{
        if(j%2==0)
               System.out.print("1");
               else
               System.out.print("0");
           
       }
       
      
       }
       System.out.println("");
      

      }

      for (int j = 1; j <= 5; j++) {
      if(j%2==0)
      System.out.print("0");
      else
      System.out.print("1");
      }
      System.out.println("");

      for (int i = 2; i >= 1; i--) {
      for (int j = 1; j <= 3; j++) {
      if(i>=j){
      if(j%2==0)
      System.out.print("0");
      else
      System.out.print("1");
      }
      else{
      System.out.print(" ");
      }
      }

       for (int j = 2; j >= 1; j--) {
       if(i<j)
           System.out.print(" ");
       else{
        if(j%2==0)
               System.out.print("0");
               else
               System.out.print("1");
           
       }
       
      
       }
       System.out.println("");
      

      }

    }

}

image

@raBbn
Copy link

raBbn commented Jul 27, 2017

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern22;

/**
*

  • @author Kishorr
    */
    public class Pattern22 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int i, j;
      final int N = 5;
      for (i = 1; i <= N - 2; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= i || j > N - i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }

      for (i = N - 1; i <= N; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= N / 2 + 1 - (i - (N / 2 + 1)) || j >= N / 2 + 1 + (i - (N / 2 + 1))) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }
      }

}
capture18

@pujanchangubhari73
Copy link

package forpattern34;

/**
*

  • @author Pujan
    */
    public class ForPattern34 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int n = 4;
      int m = n / 2;
      for (int i = 0; i <= n; i++) {
      for (int j = 0; j <= n; j++) {
      if (j == 0 || j == n) {

               System.out.printf("1" + " ");
           } else if (i == m && j == m) {
               System.out.printf("1" + " ");
           } else if (i == m) {
               System.out.printf("1" + " ");
           } else if (i == 0 || i == n) {
               System.out.printf(" " + " ");
           } else if (i - j == 0 || i - j == 2) {
               System.out.printf("0" + " ");
           } else if (i - j == 0 || j - i == 2) {
               System.out.printf("0" + " ");
           } else if (i - j == -1 || j - i == -1) {
               System.out.printf(" " + " ");
           }
      
       }
      
       System.out.printf("\n");
      

      }
      }

}
capture

@milan604
Copy link

package pattern20_alt;

/**
*

  • @author m-lan
    */
    public class Pattern20_alt {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      int n = 5, a = 1, b = n, mid, c, d;
      mid = (a + n) / 2;
      c = mid + 1;
      d = mid - 1;

      for (int i = 1; i <= n; i++) {
      for (int j = 1; j <= n; j++) {
      if ((i == a) && (j > a && j < b)) {
      System.out.printf(" ");

           } else if ((i == c) && (j > d && j < c)) {
               System.out.printf("  ");
      
           } else {
               if (j % 2 == 0) {
                   System.out.printf("0 ");
               } else {
                   System.out.printf("1 ");
               }
           }
      
       }
       if (i > mid) {
           c++;
           d--;
       }
       a++;
       b--;
       System.out.println("");
      

      }
      }

}
screenshot from 2017-07-27 16-55-42

@kiir33
Copy link

kiir33 commented Jul 27, 2017

package pattern11;

/**
*

  • @author KIRANN
    */
    public class Pattern11 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int i, j;
      final int N = 5, M = N / 2 + 1;
      for (i = 1; i <= N - M; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= i || j > N - i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }

      for (i = N - M + 1; i <= N; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= M - (i - M) || j >= i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }
      }

}
Output:
capture

@karmi214
Copy link

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern22;

/**
*

  • @author Anish
    */
    public class Pattern22 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      for (int i = 0; i < 3; i++) {
      for (int j = 0; j < 3; j++) {
      if (j <= i) {
      System.out.print((j + 1) % 2 + " ");
      } else {
      System.out.print(" ");
      }
      }
      for (int j = 3; j < 5; j++) {
      if ((j - i) == 3 && j != 4) {
      System.out.print(" ");
      } else {
      System.out.print((j + 1) % 2 + " ");
      }
      }
      System.out.println("");
      }
      for (int i = 2; i > 0; i--) {
      for (int j = 0; j < 3; j++) {
      if (j < i) {
      System.out.print((j + 1) % 2 + " ");
      } else {
      System.out.print(" ");
      }
      }
      for (int j = 3; j < 5; j++) {
      if ((j - i) == 2 && j != 4) {
      System.out.print(" ");
      } else {
      System.out.print((j + 1) % 2 + " ");
      }
      }
      System.out.println("");
      }

    }

}
p22

@sajanbasnet75
Copy link

/*

To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
/
package assignment2;
/*
*

@author LORDsajan
*/
public class Assignment2 {

/**

@param args the command line arguments
/
public static void main(String[] args) {
System.out.println("\nPattern21");
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
if (j <= i) {
System.out.print((j + 1) % 2 + " ");
} else {
System.out.print(" ");
}
}
for (int j = 3; j < 5; j++) {
if ((j - i) == 3 && j != 4) {
System.out.print(" ");
} else {
System.out.print((j + 1) % 2 + " ");
}
}
System.out.println("");
}
for (int i = 2; i > 0; i--) {
for (int j = 0; j < 3; j++) {
if (j < i) {
System.out.print((j + 1) % 2 + " ");
} else {
System.out.print(" ");
}
}
for (int j = 3; j < 5; j++) {
if ((j - i) == 2 && j != 4) {
System.out.print(" ");
} else {
System.out.print((j + 1) % 2 + " ");
}
}
System.out.println("");
}
}
}
21

@leoprabin10
Copy link

public class Pattern20 {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
    final int N = 5, M = N / 2 + 1;
    for (int i = 1; i <= N - M; i++) {
        for (int j = 1; j <= N; j++) {
            if (j <= i || j > N - i) {
                if (j % 2 == 1) {
                    System.out.print("1 ");
                } else {
                    System.out.print("0 ");
                }
            } else {
                System.out.print("  ");
            }
        }
        System.out.println();
    }

    for (int i = N - M + 1; i <= N; i++) {
        for (int j = 1; j <= N; j++) {
            if (j <= M - (i - M) || j >= M + (i - M)) {
                if (j % 2 == 1) {
                    System.out.print("1 ");
                } else {
                    System.out.print("0 ");
                }
            } else {
                System.out.print("  ");
            }
        }
        System.out.println();
    }
}

}
p20

@Sudan15423
Copy link

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package day4;

/**
*

  • @author dragon15423
    */
    public class Day4 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      for (int i = 0; i <= 2; i++) {
      for (int j = 0; j <= i; j++) {
      if (j == 1) {
      System.out.print(" 0 ");
      } else {
      System.out.print(" 1 ");
      }
      }
      for (int j = 3 - i; j > i; j--) {
      System.out.print(" ");
      }
      for (int j = i; j >= 0; j--) {
      if (j != 2 && j == 0) {
      System.out.print(" 1 ");
      }
      if (j == 1) {
      System.out.print(" 0 ");
      }
      }
      System.out.println();
      }
      for (int i = 0; i < 2; i++) {

       for (int k = 1; k >= i; k--) {
      
           if (k == 0) {
               System.out.print(" 0 ");
           } else {
               System.out.print(" 1 ");
           }
       }
       for (int j = 3; j <= 3 + i; j++) {
           System.out.print("   ");
           if (j == 4) {
               System.out.print("   ");
           }
       }
       for (int j = i; j < 2; j++) {
           if (j == 1) {
               System.out.print(" 1 ");
           } else {
               System.out.print(" 0 ");
           }
       }
       System.out.println();
      

      }
      }
      Output:
      22

@ajay987
Copy link

ajay987 commented Jul 29, 2017

int i, j;
final int N = 5;
for (i = 1; i <= N - 2; i++) {
for (j = 1; j <= N; j++) {
if (j <= i || j > N - i) {
if (j % 2 == 1) {
System.out.print("1\t");
} else {
System.out.print("0\t");
}
} else {
System.out.print("\t");
}
}
System.out.println("");
}

    for (i = N - 1; i <= N; i++) {
        for (j = 1; j <= N; j++) {
            if (j <= N / 2 + 1 - (i - (N / 2 + 1)) || j >= N / 2 + 1 + (i - (N / 2 + 1))) {
                if (j % 2 == 1) {
                    System.out.print("1\t");
                } else {
                    System.out.print("0\t");
                }
            } else {
                System.out.print(" \t");
            }
        }
        System.out.println("");
    }
}

patt21sol

@duwalshraddha
Copy link

Code
package pattern23;

/**
*

  • @author Lenovo
    */
    public class Pattern23 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      final int a = 5, b = a / 2 + 1;
      for (int i = 1; i <= a - b; i++) {
      for (int j = 1; j <= a; j++) {
      if (j <= i || j > a - i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }

      for (int i = a - b + 1; i <= a; i++) {
      for (int j = 1; j <= a; j++) {
      if (j <= b - (i - b) || j >= i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }
      }
      }
      22

@SusanCB
Copy link

SusanCB commented Jul 29, 2017

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pat20;

/**
*

  • @author nissus
    */
    public class Pat20 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int i, j;
      final int N = 5;
      for (i = 1; i <= N - 2; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= i || j > N - i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }

for (i = N - 1; i <= N; i++) {
for (j = 1; j <= N; j++) {
if (j <= N / 2 + 1 - (i - (N / 2 + 1)) || j >= N / 2 + 1 + (i - (N / 2 + 1))) {
if (j % 2 == 1) {
System.out.print("1\t");
} else {
System.out.print("0\t");
}
} else {
System.out.print("\t");
}
}
System.out.println("");
}
}
}
pat20

@sarumdr
Copy link

sarumdr commented Jul 29, 2017

public static void main(String[] args) {

for (int i = 0; i <= 2; i++) {
for (int j = 0; j <= i; j++) {
if (j == 1) {
System.out.print(" 0 ");
} else {
System.out.print(" 1 ");
}
}
for (int j = 3 - i; j > i; j--) {
System.out.print(" ");
}
for (int j = i; j >= 0; j--) {
if (j != 2 && j == 0) {
System.out.print(" 1 ");
}
if (j == 1) {
System.out.print(" 0 ");
}
}
System.out.println();
}
for (int i = 0; i < 2; i++) {

for (int k = 1; k >= i; k--) {

 if (k == 0) {
     System.out.print(" 0 ");
 } else {
     System.out.print(" 1 ");
 }

}
for (int j = 3; j <= 3 + i; j++) {
System.out.print(" ");
if (j == 4) {
System.out.print(" ");
}
}
for (int j = i; j < 2; j++) {
if (j == 1) {
System.out.print(" 1 ");
} else {
System.out.print(" 0 ");
}
}
System.out.println();
}
}

OUTPUT
image

@rituratnam
Copy link

CODE:
package pattern21a;

/**
*

  • @author Lavalesh
    */
    public class Pattern21a {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      int i, j;
      final int N = 5;
      for (i = 1; i <= N - 2; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= i || j > N - i) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }
      for (i = N - 1; i <= N; i++) {
      for (j = 1; j <= N; j++) {
      if (j <= N / 2 + 1 - (i - (N / 2 + 1)) || j >= N / 2 + 1 + (i - (N / 2 + 1))) {
      if (j % 2 == 1) {
      System.out.print("1\t");
      } else {
      System.out.print("0\t");
      }
      } else {
      System.out.print("\t");
      }
      }
      System.out.println("");
      }
      }
      }
      Output:
      pattern21a

@ErSKS ErSKS closed this as completed Aug 11, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests