7.07.2012

Number pyramid/triangle

Q. Write a C program to print the following number pyramid:

54321
 4321
  321
   21
    1

Ans.

/*c program code for number triangle*/
#include<stdio.h>
int main()
{
 int num,r,c,sp;
 printf("Enter number of rows: ");
 scanf("%d", &num);
 for(r=1; r<=5; r++,num--)
 {
   for(sp=r; sp>1; sp--)
     printf(" ");
   for(c=num; c>=1; c--)
     printf("%d",c);
   printf("\n");
 }
 getch();
 return 0;
}

/*********Output**********/
Output of C program for number triangle
Screen shot for number triangle

2 comments:

  1. sir how can we do this
    54321
    *5432
    **543
    ***54
    ****5

    ReplyDelete
  2. 54321
    321
    21
    1

    give me the code for above problem
    my whatsapp number is 09997186023
    fardeen

    ReplyDelete