for loop

C++ code to print Rhombus and Hollow Rhombus star pattern using for loop

C++ code to print Rhombus and Hollow Rhombus star pattern using for loop

In this article, we will discuss the concept of  C++ code to print Rhombus and Hollow Rhombus star pattern using for loop

In this post, we are going to learn how to write a program to print  rhombus and Hollow rhombus star pattern in  C++ language using for loop.

 

Code to print Rhombus and Hollow Rhombus star pattern

Rhombus star pattern using for loop

Rhombus star pattern

This program allows the user  to enter the number of rows and symbols then it will display  the rhombus star  pattern using for loop in C++ programming language

Program 1

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

int main() {
    int i,j,rows;
    char ch;
    cout<<"Enter the number of rows\n";
cin>>rows;
cout<<"Enter the Symbol for pattern\n";
cin>>ch;
 cout<<"\n";
 for(i=1; i<=rows; i++){//outer for loop
   for(j=1; j<=rows-i; j++){//inner for loop
   cout<<" ";//print space
   }
   for(j=1; j<=rows; j++){//inner for loop
   cout<<ch;//print character after space
}
 cout<<"\n";//move to next line
}
getch();
    return 0;
}

When the above code is executed, it produces the following result

Output 1

 

Hollow Rhombus star pattern using for loop

Hollow Rhombus star pattern

This program allows the user  to enter the number of rows and symbols then it will display  the Hollow Rhombus star  pattern using for loop in C++ programming language

Program 2

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

int main() {
    int i,j,rows;
    char ch;
    cout<<"Enter the number of rows\n";
cin>>rows;
cout<<"Enter the Symbol for pattern\n";
cin>>ch;
 cout<<"\n";
 for(i=1; i<=rows; i++){//outer for loop
   for(j=1; j<=rows-i; j++){//inner for loop
   cout<<" ";//print space
   }
   for(j=1; j<=rows; j++){//inner for loop
        if(i==1 || i==rows || j==1 || j==rows )
   cout<<ch;//print character after space
    else
   cout<<" ";
    }
 cout<<"\n";//move to next line
}
getch();
    return 0;
}

When the above code is executed, it produces the following result

Output 2

 

Suggested for you

For loop in C++ language

Nested For loop in C++ language

while loop in C++  language

Nested while  loop in C++ language

Do-while loop in C++ language

Nested Do-while loop in C++ language

The operator in C++  language

Datatype in C++ language

variable in   C++  language

 

Similar post

Java code to Print Hollow rectangle and square star pattern

C  code to Print Hollow rectangle and square star pattern

C++ code to Print Hollow rectangle and square star pattern

Display solid rectangle and square star pattern in C

Display solid rectangle and square star pattern in Java

 

Rhombus and hollow rhombus star pattern in C language

Rhombus and hollow rhombus star pattern in C++ language

Rhombus and hollow rhombus star pattern in Java language

Rhombus and Hollow Rhombus star pattern in Java using for loop
C program to print Rhombus and Hollow rhombus star pattern using for loop
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…

6 months ago

PHP Full Pyramid pattern program

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

6 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…

6 months ago

Python Full Pyramid star pattern program

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

9 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…

1 year 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,…

1 year ago