Diamond pattern

Cpp program to print diamond star pattern

Cpp program to print  diamond star pattern

In this tutorial, we will discuss Cpp program to print  diamond star pattern.

In this post, we  display two diamond patterns using nested for loop and nested while loop in C++ language

Diamond Star Pattern

In the first program, we are going to learn how to displayed  diamond star pattern  using for loop or nested for loop in C++ programming language

here, we display a diamond pattern program with coding using nested for loop and also we get input from user using Cin  in C++ language

the user can provide numbers as they wish and get the Diamond star pattern according to their input

Program 1

diamond star pattern 1

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

int main()
{
    int rows,i,j,Num_Of_space=1;
    cout<<"Enter the number of rows: ";
    cin>>rows;

    Num_Of_space=rows-1;

    for(i=1; i<=rows; i++){ //outer for loop 1
        for(j=1; j<=Num_Of_space; j++)//inner for loop for space
            cout<<" ";
            Num_Of_space--;

        for(j=1; j<=2*i-1; j++)//inner for loop for star
            cout<<"*";

        cout<<"\n";

    }

    Num_Of_space=1;
    for(i=1; i<=rows-1; i++){//outer for loop 2
            for(j=1; j<=Num_Of_space; j++)
            cout<<" ";//inner for loop for space
    Num_Of_space++;

        for(j=1; j<=2*(rows-i)-1; j++)//inner for loop for star
            cout<<"*";
            cout<<"\n";//move to next line

        }
        getch();

    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows: 6
          *
        ***
      *****
    *******
  *********
***********
  *********
    *******
      *****
        ***
          *

 

Diamond pattern using while loop

In the second program, we are going to learn how to displayed  diamond star pattern  using while loop or nested while loop in C++ programming language

here, we displayed a diamond pattern program with coding using nested while loop and also we get input from user using Cin() function in C++ language

the user can provide numbers as they wish and get the Diamond star pattern according to their input

Program 2

diamond star pattern 2

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
    int i=1,j=1,rows;

    cout<<"Enter the mnumber of rows\n";
    cin>>rows;
    int space=rows-1;
    while(j<=rows){  //outer while loop 1
        cout<<"\n";
        j=1;
        while(j<=space){ //inner while loop for space
            cout<<" ";
            j++;
        }
        j=1;
        while(j<=2*i-1){//inner while loop for star
            cout<<"*";
            j++;
        }
        i++;
        space--;
    }
    i=rows-1;
    space=1;
    while(i>=1){   //outer while loop 2
        cout<<"\n";
        j=1;

        while(j<=space){  //inner while loop for space
            cout<<" ";
            j++;
        }
        j=1;
        while(j<=2*i-1){//inner while loop for star
            cout<<"*";
            j++;
        }
        i--;
        space++;
        }
        getch();
    return 0;
}

 

When the above code executed, it produces the following results

 

Enter the number of rows: 6
          *
        ***
      *****
    *******
  *********
***********
  *********
    *******
      *****
        ***
          *

 

Similar post

C code to display diamond star pattern

C++ code to display diamond star pattern

C++ program to display Binary pyramid pattern

C program to display Binary pyramid pattern

C program to display hollow diamond star pattern

C++ program to display hollow diamond star pattern

 

Java code to print Rhombus and hollow Rhombus star pattern

C program to display Mirrored Rhombus  hollow Mirrored Rhombus star pattern

C++ program to display Rhombus  hollow Rhombus star pattern

 

Java program to display Parallelogram star pattern using while loop

C program to display Parallelogram star pattern using for loop

C++ program to display mirrored Parallelogram star pattern using for loop

 

 

 

Suggested for you

Operator in Java language

Data type in Java language

For loop in Java language

While loop in Java language

Nested for loop in Java language

Nested while loop in Java language

 

Operator in C++ language

Data type in C++ language

For loop in C++ language

While loop in C++ language

Nested for loop in C++ language

Nested while loop in C++ language

 

Operator in C language

For loop in C language

While loop in C language

Nested for loop in C language

Nested while loop in C language

Cpp program to display patterns using do while loop
C program to print diamond star 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

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago