Advertisements
Advertisements
प्रश्न
Write the program to display the following pattern:
1
1 0
1 0 1
1 0 1 0
1 0 1 0 1
थोडक्यात उत्तर
उत्तर
public class Q9d
{ public static void main(String ar[])
{System.out.printIn("\n-----------------");
int i, j;
for (i = 1; i <= 5; i++)
{System.out.printIn();
for (j = 1; j <= i; j++)
{ if (j % 2 != 0)
System.out.print("1" + " "):
else
System.out.print("0" + " ");
}}}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.1: Nested Loop - EXERCISES [पृष्ठ १४६]