Monday, August 26, 2019

WAP to display pyramids of numbers.

//To print:
          1
       2   2
   3    3    3
4    4    4    4

#include<stdio.h>
void main()
{
    int i,j,k,n,t=1;
    printf("Enter any number:");
    scanf("%d", &n);
    for(i=1 ; i<=n ; i++)
    {
         for(j=1 ;j<=n-i ; j++)
         {
               printf("\t");
         }
         for(k=1 ; k<=2*i-1 ; k++)
         {
              if(k%2!=0)
              {
                  printf("%d",t);
               }
              else
              {
                  printf("\t");
               }
          }
          printf("\n");
          t=t+1;
     }
     getch();
}

Output:
Enter any number:4
          1
       2    2
    3    3    3
4    4    4    4

No comments:

Post a Comment

Write a program to find gcd of two numbers using recursion.

About:  The process in which a function calls itself is called recursion and the corresponding function is called as recursive function. ...