So I have this number
6011002543517833
(6*2) 0 (1*2) 1 (0*2) ....
12 0 2 1 0 ...
1+2 + 0 + 2 +1 +0 ...
problem is int can't read over 9 power?
so i know if i set int number = (double)original number / 1^16 will get 6 but
how do i getthe rest of the numbers?
well its a project professor gave us but I got stuck from the start because int doesn't work in that case. I think i figured out a way to get that number but not sure I am doing it right.