Full Pyramid

Program to print full pyramid pattern

IntermediateTopic: Pattern Programs
Back

C++ Full Pyramid Program

This program helps you to learn the fundamental structure and syntax of C++ programming.

Try This Code
#include <iostream>
using namespace std;

int main() {
    int rows;
    
    cout << "Enter number of rows: ";
    cin >> rows;
    
    for (int i = 1; i <= rows; i++) {
        // Print spaces
        for (int j = 1; j <= rows - i; j++) {
            cout << " ";
        }
        // Print stars
        for (int j = 1; j <= 2 * i - 1; j++) {
            cout << "*";
        }
        cout << endl;
    }
    
    return 0;
}
Output
Enter number of rows: 5
    *
   ***
  *****
 *******
*********

Understanding Full Pyramid

A full pyramid has stars centered. For row i, we print (rows - i) spaces, then (2*i - 1) stars. The number of stars increases by 2 each row (1, 3, 5, 7...), creating the pyramid shape.

Note: To write and run C++ programs, you need to set up the local environment on your computer. Refer to the complete article Setting up C++ Development Environment. If you do not want to set up the local environment on your computer, you can also use online IDE to write and run your C++ programs.

Table of Contents