I am creating a program for a serial base output.
But i am having trouble on creating base36 sequence.
I cannot use "if else" condition to this one.
Anyone knows how to create base36 in c++?
I need help this time because im stuck on this
for 2 days now. :(
i want to create a serial in base36 format
example: if my last serial end in 2S which is = 100 in decimal
my next serial will be 2T which is equivalent to 101..
0 = 0
1 = 1
2 = 2
3 = 3
4 = 4
5 = 5
6 = 6
7 = 7
8 = 8
9 = 9
A = 10
B = 11
C = 12
D = 13
E = 14
F = 15
G = 16
H = 17
I = 18
J = 19
K = 20
L = 21
M = 22
N = 23
O = 24
P = 25
Q = 26
R = 27
S = 28
T = 29
U = 30
V = 31
W = 32
X = 33
Y = 34
Z = 35