pyramid triangle

Cpp program to Hollow Pyramid Pattern

Cpp program to Hollow Pyramid Pattern

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

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

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:

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:

Hollow Pyramid pattern 2

Hollow inverted pyramid triangle pattern in C++ language

 

Suggested for you

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

 

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

Cpp program to Floyd's triangle star pattern
Java code to Hollow Pyramid Pattern
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.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago