#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
printf("\nenter the value of n:");
scanf("%d",&n);
for(i=0;i<=n;i++)
{
if(i%2==0)
{
for(j=1;j<=i;j++)
{
if(j%2==0)
{
printf("1");
}
else
{
printf("0");
}
}
}
else
{
for(j=1;j<=i;j++)
{
if(j%2!=0)
{
printf("0");
}
else
{
printf("1");
}
}
}
printf("\n");
}
getch();
}
No comments:
Post a Comment