Introduction - If you have any usage issues, please Google them yourself
Decimal number N, and other binary conversion is calculated on a computer to achieve the fundamental issue, the resolution many ways in which a simple algorithm based on the following principles: N = (N div d)* d+ N mod d (of which: div is divisible by operation, I mod for the sake of computing), such as decimal to octal number system conversion (1348) 10 = (2504) 8, its operation process is as follows: NN div 8 N mod 8 1348 168 4 168 21 0 21 2 5 2 0 2 to make use of the stack use of such methods to achieve the decimal to three decimal number system conversion