HELP

tltdas

New member
Joined
Jun 3, 2005
Messages
7
Can someone help me by explaining how to convert 68 to base eight?
My book doesn't explain it very well and I do not understand.

Thanks,
Tara
 
The easiest way is to write the decimal number, divide by 8 write the remainder then doit again with the new decimal number.
Code:
       0    rem 1 
       __
    8 |1    rem 0
      ___
   8 | 8    rem 4
    ----
  8 | 68
When you get to zero you're done. Read down for the answer.
68<sub>10</sub> = 104<sub>8</sub>
 
Top