Contact Learn C
Copy

Program 152:Left Number Pyramid 1

Program 152:

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

//Coming Soon...

Output:

Left 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