[solved] – Question 80905
Description of the Problem
Write a program that will ask the user to enter 3 character values, a letter, a number, and a symbol, such as B, 6, and #. Write the values in original form, decimal, hex, and octal notation. The output should be written in the format shown below.
Output:
letter = B number = 6 symbol = #
Decimal 66 54 35
Hex 42 36 23
Octal 102 66 43
Expert Answer
OR

