This is a C++ Program to Convert a Decimal Number to its HexaDecimal Equivalent. Before that, you must have knowledge of the following topics in C++.
Hexadecimal number
The hexadecimal number is represented with a base of 16. It has digits from 0 to 15 to represent, However after 9 the values are represented in Alphabet till 15 such as 10 is represented as A, 11 as B, 12 as C, 13 as D, 14 as E, and 15 as F.
Decimal Number
These are the numbers with a base of 10, which ranges from 0 to 9. These numbers are formed with the combination of 0 to 9 digits such as 24, 345, etc.
Now let us go through a program for decimal to hexadecimal conversion in C++.
C++ Program to Convert Decimal to Hexadecimal
The programs ask the user to enter a decimal number and iterating the number with the help of a while loop, the program calculates the equivalent hexadecimal value.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #include <iostream> using namespace std; int main() { char hexaDeci[50]; int deci, rem, i = 0; cout << "Enter the Decimal Number: "; cin >> deci; while (deci != 0) { rem = deci % 16; if (rem < 10) rem = rem + 48; else rem = rem + 55; hexaDeci[i] = rem; i++; deci = deci / 16; } //Display cout << "Hexadecimal value: "; for (i = i - 1; i >= 0; i--) cout << hexaDeci[i]; return 0; } |
Output:
Enter the Decimal Number: 4510
Hexadecimal value: 119E
You may go through the following vice versa program: