Full Triangle/Full Pyramid Pattern Printing Programs – (With C++ Code)

In this tutorial we will understand how to code a triangle pattern and different variations. It is also known as Full Pyramid Pattern. . Later we will also write a program to print this pattern in C++ Programming Language.

C++ Program for Full Triangle/Full Pyramid –
#include<iostream>

using namespace std;

void PyramidPattern1(int n) {
  for (int i = 1; i <= n; i++) {
    for (int k = n - i; k > 0; k--) {
      cout << " ";
    }
    for (int j = 1; j <= i; j++) {
      cout << "* ";
    }
    cout << endl;
  }
}
void PyramidPattern2(int n) {
  for (int i = n; i >= 1; i--) {
    for (int k = n - i; k > 0; k--) {
      cout << " ";
    }
    for (int j = i; j > 0; j--) {
      cout << "* ";
    }
    cout << endl;
  }
}

int main() {
  int num;
  cout << "Enter number of levels of the pattern :" << endl;
  cin >> num;
  PyramidPattern1(num);
  cout << endl;
  PyramidPattern2(num);

  return 0;
}
YouTube video tutorial –

Leave a Reply

Your email address will not be published. Required fields are marked *