Program to display Pyramid in C++

How to Program to display Pyramid in C++ Programming ?


Program to display the following pattern: Pyramid and Pattern pyramid pattern program in c pyramid pattern programs in java pyramid pattern program in php pyramid pattern of numbers in java pyramid pattern in javascript pyramid pattern in python pyramid pattern in c language

Program to display Pyramid in C++

Solution:
/*
Program to display the following pattern:
    1
   212
  32123
 4321234
543212345
*/
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
for(int i=1;i<=5;i++)
{
for(int j=4;j>=i;j--)
cout<<" ";
for(int k=i;k>=1;k--)
cout<<k;
for(int l=2;l<=i;l++)
cout<<l;
cout<<endl;
}
getch();
}

This Program to display Pyramid in C++.


Learn More :