Question

Write a C++ program that defines a function that converts a binary number string to an...

  1. Write a C++ program that defines a function that converts a binary number string to an integer. However, if the binary number is greater than or equal to 4,294,967,296, the function must return 0.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
#include <iostream>
#include <string>

using namespace std;

unsigned int binary_to_decimal(string s) {
    if (s.length() > 32)
        return 0;
    unsigned int value = 0;
    for (int i = 0; i < s.size(); i++) {
        value *= 2;
        value += s[i] - '0';
    }
    return value;
}

int main() {
    string s;
    cout << "Enter a binary string: ";
    cin >> s;
    cout << s << " in decimal is " << binary_to_decimal(s) << endl;
    return 0;
}

Add a comment
Know the answer?
Add Answer to:
Write a C++ program that defines a function that converts a binary number string to an...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT