-
Notifications
You must be signed in to change notification settings - Fork 0
/
conversion.cpp
128 lines (123 loc) · 2.15 KB
/
conversion.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include <iostream>
// #include<bits/stdc++.h>
#include <string.h>
using namespace std;
int binaryToDecimal(int n)
{
int ans = 0;
int x = 1;
while (n > 0)
{
int y = n % 10;
ans += x * y;
x *= 2;
n /= 10;
}
return ans;
}
int octalToDecimal(int n)
{
int ans = 0;
int x = 1;
while (n > 0)
{
int y = n % 10;
ans += x * y;
x *= 8;
n /= 10;
}
return ans;
}
int hexadecimalToDecimal(string n)
{
int ans = 0;
int x = 1;
int s = n.size();
for (int i = s - 1; i >= 0; i--)
{
if (n[i] >= '0' && n[i] <= '9')
{
ans += x * (n[i] - '0');
}
else if (n[i] >= 'A' && n[i] <= 'F')
{
ans += x * (n[i] - 'A' + 10);
}
x *= 16;
}
return ans;
}
int decimalToBinary(int n)
{
int x = 1;
int ans = 0;
while (x <= n)
{
x *= 2;
}
x /= 2;
while (x > 0)
{
int lastDigit = n / x;
n -= lastDigit * x;
x /= 2;
ans = ans * 10 + lastDigit;
}
return ans;
}
int decimalToOctal(int n)
{
int x = 1;
int ans = 0;
while (x <= n)
{
x *= 8;
}
x /= 8;
while (x > 0)
{
int lastDigit = n / x;
n -= lastDigit * x;
x /= 8;
ans = ans * 10 + lastDigit;
}
return ans;
}
string decimalToHexadecimal(int n)
{
int x = 1;
string ans = "";
while (x <= n)
x *= 16;
x /= 16;
while (x > 0)
{
int lastDigit = n / x;
n -= lastDigit * x;
x /= 16;
if (lastDigit <= 9)
{
ans = ans + to_string(lastDigit);
}
else
{
char c = 'A' + lastDigit - 10;
ans.push_back(c);
}
}
return ans;
}
int main()
{
int n;
// string n;
cout << "Enter the Num\n";
cin >> n;
// cout<<binaryToDecimal(n)<<endl;
// cout<<octalToDecimal(n)<<endl;
// cout<<hexadecimalToDecimal(n)<<endl;
// cout<<decimalToBinary(n)<<endl;
// cout<<decimalToOctal(n)<<endl;
cout << decimalToHexadecimal(n) << endl;
return 0;
}