Contact Learn C
Copy

Program 160:Right Number Pyramid 1

Program 160:

#include<stdio.h>
main()
{
    int i,j,k,rows,count,temp;
    printf("Enter number of rows:\n");
    scanf("%d",&rows);
    printf("\n");
    count=rows-1;
    
    for(i=1;i<=rows;i++)
    {
     for(k=1;k<=count;k++)
     {
      printf(" ");
     }
        for(j=1;j<=i;j++)
        {
            printf("%d",i);
            
        }
        count--;
        printf("\n");
    }  
   count=1;
      for(i=rows-1;i>=1;i--)
    {
     for(k=1;k<=count;k++)
        {
      printf(" ");
     }
        for(j=1;j<=i;j++)
        {
            printf("%d",i);
        }
        count++;
       
        printf("\n");
    } 
}
Explanation:

//Coming Soon...

Output:


Right Number Pyramid 1
Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide