Cpp program to Hollow Pyramid Pattern
- Home
- pyramid triangle
- Cpp program to Hollow Pyramid Pattern
- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
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:
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:
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