Java program to display triangle 0 10 101 0101

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Display Triangle as follow
   0
   1 0
   1 0 1
   0 1 0 1 */
class Output2{
	public static void main(String args[]){
		for(int i=1;i<=4;i++){
			for(int j=1;j<=i;j++){
				System.out.print(((i+j)%2)+" ");
			}
			System.out.print("\n");
		}
	}
}
surajk

7 thoughts on “Java program to display triangle 0 10 101 0101

  1. /* The correct way to get exact output
    0
    1 0
    1 0 1
    0 1 0 1 */

    public class triangle_0_10_101_0101 {
    public static void main(String[] args) {
    int n=12,a=0;
    for(int i=1;i<=n;i++){
    for(int j=0;j<i;j++){
    a=n%2;
    System.out.print(a +" ");
    n–;
    }
    System.out.println();
    }
    }
    }

  2. please sol this output
    0
    1 0 1
    2 1 0 1 2
    3 2 1 0 1 2 3
    4 3 2 1 0 1 2 3 4
    5 4 3 2 1 0 1 2 3 4 5

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in