Binary pattern

Cpp program to display Binary pyramid pattern

Cpp program to display Binary pyramid pattern

In this tutorial, we will discuss the Cpp program to display Binary pyramid pattern

Display Binary pyramid pattern

In this program, we are going to learn how to displayed  Binary Pyramid pattern  using for loop in C++ programming language

Here, we display a Binary pyramid pattern program with coding using nested for loop and also we get input from the user using cin function in C++ language

The user can provide numbers as they wish and get the Binary pyramid pattern according to their input.

Display Binary pyramid pattern using for loop

Program 1

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

int main()
{
    int i,j,k,rows,count=1,num=1,space;
    cout<<"Enter the number of rows";
    cin>>rows;//get input from user
    space=rows-1;

    for(i=1; i<=rows; i++){ //parent for loop- outer for loop

        for(j=1; j<=space; j++){//for loop for display space
        cout<<" ";//print space
    }

         for(k=1; k<=num; k++){
        cout<<count%2;//print number for pyramid
        count++;
    }
    space--;
    num+=2;
    cout<<"\n";
    }
    getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows: 6
          1
        010
      10101
    0101010
  101010101
01010101010

 

Display Binary pyramid pattern using while loop

In this program, we are going to learn how to displayed  Binary Pyramid pattern  using while loop in C++ programming language

here, we display a Binary pyramid pattern program with coding using nested while loop and also we get input from the user using cin function in C++ language

the user can provide numbers as they wish and get the Binary pyramid pattern according to their input

Program 2

 

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

int main()
{
    int i,j,rows,k,count1=1,num=1,space;
    cout<<"Enter the number of rows\n";
    cin>>rows;//get input from user
    space=rows-1;
i=1;
while(i<=rows){
   j=1;
while(j<=space){
cout<<" ";//print space
j++;
}
k=1;
while(k<=num){
cout<<count1%2;////print binary number for pyramid
k++;
count1++;

}
i++;
space--;
num+=2;
cout<<"\n";
}
getch();
    return 0;
}

When the above code executed, it produces the following results

Enter the number of rows: 6
          1
        010
      10101
    0101010
  101010101
01010101010

 

Suggested for you

Operator in C++ language

Data type in C++ language

For loop in C++ language

Nested for loop in C++ language

While loop in C++ language

Nested while loop in C++ language

C program to display Binary Pyramid pattern
Alphabet Pyramid pattern in Java using while 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…

1 month ago

PHP Full Pyramid pattern program

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

1 month ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

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

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

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

10 months ago