Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Lab task 2: Create a program that asks the user for a binary number (string) and outputs the equivalent base 10 (decimal form) of the

Lab task 2: Create a program that asks the user for a binary number (string) and outputs the equivalent base 10 (decimal form) of the inputted binary string.

Write your code in the main function. Use cin to get the input and cout to output the result. Use the string class to extract each binary digit to get a single integer to use in calculations:

#include

#include

using namespace std;

void main()

{

string binary, b;

int digit;

cout << "Enter a binary string: ";

cin >> binary;

//get the most significant bit of binary

b=binary[0];

digit = atoi(b.c_str());

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Marketing The Ultimate Marketing Tool

Authors: Edward L. Nash

1st Edition

0070460639, 978-0070460638

Students also viewed these Databases questions

Question

Effective Delivery Effective

Answered: 1 week ago