Friday, July 22, 2011

Program to print numbers in Traingular pattern {Type 11}


              1
           1    2
       1    2    3
    1     2    3    4
 1     2    3    4    5
    1    2    3     4
       1     2    3
           1    2
              1

===========================================================
/*Serial No.34     [swami154.cpp]*/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k,n;
clrscr();
printf("Enter the no. of lines of traingle:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=(n-1);k>=i;k--)
{
printf(" ");
}
for(j=1;j<=i;j++)
{printf(" %d",j);}
printf("\n");
}
for(i=(n-1);i>=1;i--)
{
for(k=(n-1);k>=i;k--)
{printf(" ");}
for(j=1;j<=i;j++)
{printf(" %d",j);}
printf("\n");
}
getch();
}

No comments:

Post a Comment

If you have any doubt, feel free to ask...