Right Half Pyramid

Program to print right half pyramid pattern

BeginnerTopic: Pattern Programs
Back

C++ Right Half 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++) {
        for (int j = 1; j <= i; j++) {
            cout << "* ";
        }
        cout << endl;
    }
    
    return 0;
}
Output
Enter number of rows: 5
*
* *
* * *
* * * *
* * * * *

Understanding Right Half Pyramid

This pattern uses nested loops. The outer loop controls rows, and the inner loop prints stars. In row i, we print i stars. The inner loop runs from 1 to i, printing one star per iteration, creating a right-aligned pyramid.

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