Question: Can you please write this program in c++.. Program 5 - Binary to Decimal (Homework) CSCI 259 Problem Statement Design a program that prompts the
Program 5 - Binary to Decimal (Homework) CSCI 259 Problem Statement Design a program that prompts the user to enter a binary number and displays its corresponding decimal value. Hint: read the binary as a string and use a loop to go through each individual digit As a review, here is how you convert a binary number into a decimal number 24 23 22 21 2 1 0 0 1 1 1'24 +023+0 2+121 +1*2 16+0 0+2+1 19 Binary: decimal: Getting Started 1. 2. Name your project BinaryToDec Include header comments formatted as shown below (you may want to copy and paste the header from a previous lab assignment and edit it). Course: CSCI 259, Section 1 Student Name: Jane Doe Student ID: 12345678 Program 5 (Homework) Due Date In keeping with the Honor Code of UM, I have neither given nor received assistance from anyone other than the instructor Program Description: Algorithm 1. 2. 3. 4. Prompt for the binary number If the number is invalid (contains digits other than 0 and 1). display the error message. If the number is valid, calculate its decimal value. Output result using cout or printf Sample Output Enter a binary number: 1000100 The corresponding decimal value is: 68 Enter a binary number: 12345 Invalid binary number entered! 5. Before each significant step. provide a comment explaining the step (do not comment every line of code) Test Plan In order to receive credit, you must show the TA the test cases above. Submit your program BinaryToDec.cpp on Blackboard using the Program 5 (Homework) link under Lab Assignments button. Your electronic submission of the program file will represent your endorsement of the Honor Code Statement
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
