write a java program to print the following pattern
1 0 1 0
1 0 1 0
1 0 1 0
1 0 1 0
Answers
Answered by
0
Hope it helps you if yes then mark me brainliest
Attachments:
Answered by
1
Answer:
public class KboatPattern
{
public void displayPattern() {
int a = 1, b = 0;
for (int i = 1; i <= 5; i++) {
for (int j = 1; j <= i; j++) {
if (j % 2 == 0)
System.out.print(b + " ");
else
System.out.print(a + " ");
}
System.out.println();
}
}
}
Similar questions