View Single Post
Old Jan 4, 2007 | 07:51 AM
  #8  
reno96teg's Avatar
reno96teg
Moderator
 
Joined: Dec 2000
Posts: 21,573
Likes: 0
Default

it says
6
2
85



you convert it like so
binary digit * (2 ^ digit position from the right, starting at 0), then add everything together.

for example.. the first one is..
0 * (2^0) = 0
+
1 * (2^1) = 2
+
1 * (2^2) = 4
=
6
Reply