Write a program in C++ to convert a binary number to decimal number

  • برمجة سي بلس بلس
  • برمجة

Write a program in C++ to convert a binary number to decimal number

Sample Output:

Convert a  binary number to decimal number:                           
-----------------------------------------------                        
 Input a binary number: 1011                                           
 The decimal number: 11

الأجوبة

#include <iostream>
#include <math.h>
using namespace std;
 
int main()
{
  long binaryNumber, decimalNumber = 0, j = 1, remainder;
	cout << "\n\n Convert a  binary number to decimal number:\n";
	cout << "-----------------------------------------------\n";
	cout << " Input a binary number: ";
	cin>> binaryNumber;
  while (binaryNumber != 0) 
  {
   remainder = binaryNumber % 10;
   decimalNumber = decimalNumber + remainder * j;
   j = j * 2;
   binaryNumber = binaryNumber / 10;
  }
  cout<<" The decimal number: " << decimalNumber<<"\n";
} 
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...