Cpp program to Hollow Pyramid Pattern

Cpp program to Hollow Pyramid Pattern

In this tutorial, we will  discuss the concept of Cpp program to Hollow Pyramid Pattern

In this topic, we will learn how to create hollow pyramid star pattern in C++ programming language using nested for loop

Hollow Pyramid pattern

Program 1

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int rows;
    cout << "Enter the rows for hollow pyramid" << endl;
    cin>>rows;
    for(int i=1; i<=rows; i++){//do print each rows
        for(int j=i; j<=rows; j++){ //print space for pyramid
        cout<<" ";
    }
    for(int k=1; k<2*i; k++){
            if(i==rows || (k==1 || k==2*i-1)){
                cout<<"*";
            }
            else{
                cout<<" ";
            }


    }
    cout<<"\n"; //move to next line
    }
    getch();
    return 0;
}

When the above code is executed, it produces the following results:

Cpp program to Hollow Pyramid Pattern
Hollow Pyramid pattern 1

 

Hollow pyramid triangle pattern in C++ language

 

Hollow Inverted Pyramid pattern

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int rows;
    cout << "Enter the rows for hollow pyramid" << endl;
    cin>>rows;
    for(int i=rows; i>=1; i--){//do print each rows
        for(int j=rows; j>i; j--){ //print space for pyramid
        cout<<" ";
    }
    for(int k=1; k<2*i; k++){
            if(i==rows || (k==1 || k==2*i-1)){
                cout<<"*";
            }
            else{
                cout<<" ";
            }


    }
    cout<<"\n";//move to next line
    }
    getch();
    return 0;
}

When the above code is executed, it produces the following results:

Cpp program to Hollow Pyramid Pattern
Hollow Pyramid pattern 2

 

 

Similar post

Floyd’s triangle number pattern using for loop in C

Floyd’s triangle pattern using nested for loop in Java

Floyd’s triangle pattern using nested while loop in Java

Hollow pyramid triangle pattern in C++ language

Pyramid star pattern in Cpp

Pyramid star pattern in C

Pyramid star pattern in Java 

Rhombus pattern in Java using for loop

Rhombus pattern in C using while loop

Rhombus pattern in C++ using do-while loop

 

 

Suggested for you

Loops in Java language

Loops in C language

Loops in C++ language

 

For loop in C++ language

For loop in Java language

For loop in C language

For loop in Python language

 

Nested for loop in Java language

Nested for loop in C++ language

Nested for loop in C language

Nested for loop in Python language

 

If statements in Java  language

Nested if statements in Java  language

 

 

By Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Leave a comment

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

9Shares