Question: Design an algorithm and write its C++ code based on Switch-Case statements. It takes an integer argument in the range from 5 to 15, inclusive,
Design an algorithm and write its C++ code based on Switch-Case statements. It takes an integer argument in the range from 5 to 15, inclusive, and prints the 4-Bit Binary Equivalent for that integer on the computer screen. If the argument is not in the required range, then the function should print "Out of Range Digit" without the quotation. Thus, for example: The '7' should be printed as '0111' on the screen; The '8' should be printed as '1000' on the screen; The '15' should be printed as '1111' on the screen; Keep your code commented and indented for ease of reading. Paste your commented codes in the solution and also add a clear screen shot of outcome in your solution
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
