Question: Write a function that returns a decimal number from a binary string. The function header is as follows: int bin2Dec(const string& binaryString) For example, binaryString

Write a function that returns a decimal number from a binary string. The function header is as follows:

int bin2Dec(const string& binaryString)

For example, binaryString 10001 is 17 (1x2 4 + Ox2 3 + Ox2 2 + Ox2 1 +1x2 0 =17). So, bin2Dec ("10001") returns 17.

Write a function that parses a decimal number into a binary number as a string. The function header is as follows:

string dec2Bin (int value)

For example. dec2Bin (17 ) rettuns string "10001".

Write a test program that prompts the user to enter a binary or decimal number and display its equivalent value in decimal or binary.


Step by Step Solution

3.48 Rating (148 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To solve this problem you need three components a function to convert a binary string to a decimal number ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!