Question: C++ Base Conversion Write a program that will convert numbers to different bases. Your program will prompt the user to enter an integer in decimal,
C++
Base Conversion
Write a program that will convert numbers to different bases. Your program will prompt the user to enter an integer in decimal, and a base. Your program will convert the decimal number to that base. For example:
Enter a decimal number: 2009
Enter a base: 25
Converted number: 3J1
Your program should be able to convert to any base between 2 and 36. Remember to convert multi-digit values to alphabetic characters.
comment : The answer should invlove Alphabet as well, For EX: 3J1. which include "iostream".
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
