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"); } } } |
the correct output is:
0
1 0
0 1 0
1 0 1 0
so please correct the question
/* 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();
}
}
}
i want this pattern pls help me na
1
11
101
10 0 1
I found more real interview program on this blog http://javatutorialhere.blogspot.in/
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
1
2 6
3 7 10
4 8 11 13
5 9 12 14 15
i want this pyramid program