In this tutorial, we will discuss about Cpp program to display Pyramid star pattern
In this topic, we will learn how to create Pyramid star pyramid pattern in C++ language using nested for loop
Program 1
Pyramid pattern
#include <iostream> #include <conio.h> using namespace std; int main() { int rows; cout << "Enter the number of rows" << endl; cin>>rows; for(int i=1; i<=rows; i++){//outer for loop for(int j=1; j<=(rows-i)*2; j++){ cout<<" ";//print space fot pyramid } for(int k=i; k>=1; k--){//inner for loop cout<<" "<<"*"; //create left half } for(int l=2; l<=i; l++){ cout<<" "<<"*" ; //create right half } cout<<"\n"; } getch(); return 0; }
Enter the number of rows 6 * *** ***** ******* ********* ***********
Program 2
Inverted Pyramid pattern
#include <iostream> #include <conio.h> using namespace std; int main() { int rows; cout << "Enter the number of rows" << endl; cin>>rows; for(int i=rows; i>=1; i--){//outer for loop for(int j=i; j<=rows; j++){ cout<<" ";//print space fot pyramid } for(int j=1; j<=(2*i-1); j++){//inner for loop cout<<"*"; //print star } cout<<"\n";//move to next line } getch(); return 0; }
Enter the number of rows 6 *********** ********* ******* ***** *** *
Program 3
Right leaned Pyramid pattern
#include <iostream> #include <conio.h> using namespace std; int main() { int rows; cout << "Enter the number of rows" << endl; cin>>rows; for(int i=1; i<=rows; i++){//outer for loop for(int j=1; j<=i; j++){//inner for loop cout<<"*";//print star fot pyramid top half } cout<<"\n"; //move to next line } for(int i=rows; i>=1; i--){//outer for loop for(int j=1; j<=i; j++){//inner loop cout<<"*" ; //print star for bottom half } cout<<"\n"; } getch(); return 0; }
Enter the number of rows 6 * ** *** **** ***** ****** ***** **** *** ** *
Program 4
Left leaned Pyramid pattern
#include <iostream> #include <conio.h> using namespace std; int main() { int rows; cout << "Enter the number of rows" << endl; cin>>rows; for(int i=1; i<=rows; i++){//outer for loop for(int j=i; j<rows; j++){ cout<<" ";//print space for pyramid } for(int j=1; j<=i; j++){ cout<<"*";//print star for pyramid top part }//inner for loop cout<<"\n"; } for(int i=rows; i>=1; i--){//outer for loop for(int j=i; j<=rows; j++){ cout<<" ";//print space for pyramid } for(int j=1; j<i; j++){ cout<<"*";//print star for pyramid below part }//inner for loop cout<<"\n"; } getch(); return 0; }
Enter the number of rows 6 * ** *** **** ***** ****** ***** **** *** ** *
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
Display Pyramid star pattern in C
Display Pyramid star pattern in Java
Suggested for you
Nested for loop 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…