C++ Program to Convert Binary to Octal

Advertisements

Prev Tutorial Next Tutorial

C++ Program to Convert Binary to Octal Number

To convert binary to octal in C++ Programming, you have to ask to the user to enter any number in binary to convert it into octal to display the equivalent value in octal on the screen.

Before write this code you must be basic kanowledge about For Loop in C++, While Loop in C++ and Modulus Operator in C++.

Algorithom for Convert Binary to Octal Number

  • Take a binary number as input.
  • Divide the binary number into groups of 3 bits. For each group of 3 bits, multiply each bit with the power of 2 and add them consecutively.
  • Combine the result of all groups to get the output.

C++ Program to Convert Binary to Octal

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

void main()
{
  long int binarynum, octalnum = 0, j = 1, remainder;
  clrscr();
  cout<<"Enter any Binary Number: ";
  cin>>binarynum;
  while (binarynum != 0)
   {
     remainder = binarynum % 10;
     octalnum = octalnum + remainder * j;
     j = j * 2;
     binarynum = binarynum / 10;
   }
   cout<<"Equivalent octal value: " <<octalnum;
  getch();
}

Output

Enter any Binary Number: 1101 
Equivalent octal value: 13
convert binary to decimal number in c++
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements