Convert Binary to Decimal C Plus Plus

By | July 21, 2019

Task: Write a Program To Convert Binary to Decimal Number in C++

Convert binary number to decimal C Plus Plus program C++

Convert binary number to decimal C Plus Plus program C++

Te Source code of C++ Program To Convert Binary to Decimal Number

// Write a C++ program to input a binary number,
// and convert into correspondin Decimal number 
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
	long int binNum,rem,n,i,decimal;
	cout<<"Enter a Binary Number:";
	cin>>binNum;
	i=0;
	decimal=0;
	for(n=binNum;n!=0;n=n/10)
	{
		rem=n%10;
		decimal=decimal+rem*pow(2,i);
		i++;
	}
	cout<<"Decimal Number: "<<decimal;
	return 0;
}

The Output of the C++ Program To input a Binary number and convert it into decimal number

Enter a Binary Number:101
Decimal Number: 5
--------------------------------
Process exited after 25.63 seconds with return value 0
Press any key to continue . . .

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *