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
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 triangle pattern in C++ language
#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:
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
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
Nested for loop in Java language
Nested for loop in C++ language
Nested for loop in Python language
If statements in Java language
Nested if statements in Java language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…