Tuesday, August 23, 2011

Number Pattern5

1111
  222
    33
      4
    33
  222
1111
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=4;i++)
{
for(j=2;j<=i;j++)
{
printf(" ");
}
for(j=4;j>=i;j--)
{
printf("%d",i);
}
printf("\n");
}

for(i=3;i>=1;i--)
{
for(j=i;j>=2;j--)
{
printf(" ");
}
for(j=4;j>=i;j--)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

No comments:

Post a Comment

Feel free to comment......