C++ Exercises: Display Pascal's triangle like pyramid
C++ For Loop: Exercise-45 with Solution
Write a C++ program to display Pascal's triangle like a pyramid.
Construction of Pascal's Triangle:
As shown in Pascal's triangle, each element is equal to the sum of the two numbers immediately above it.

Sample Solution:
C++ Code :
#include <iostream>
using namespace std;
int main()
{
int row,c=1,blk,i,j;
cout << "\n\n Display the Pascal's triangle:\n";
cout << "-----------------------------------\n";
cout << " Input number of rows: ";
cin >> row;
for(i=0;i<row;i++)
{
for(blk=1;blk<=row-i;blk++)
cout<<" ";
for(j=0;j<=i;j++)
{
if (j==0||i==0)
c=1;
else
c=c*(i-j+1)/j;
cout<<c<<" ";
}
cout<<endl;
}
}
Sample Output:
Display the Pascal's triangle: ----------------------------------- Input number of rows: 5 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C++ to display the pattern like a diamond.
Next: Write a program in C++ to display Pascal's triangle like right angle triangle.
What is the difficulty level of this exercise?
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join