1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Development Binary

Discussion in 'Software' started by SAS91, 23 May 2005.

  1. SAS91

    SAS91 What's a Dremel?

    Joined:
    22 May 2005
    Posts:
    17
    Likes Received:
    0
    I was wondering if anyone had any links to guides for binary as i wish to learn it :) For no real reason but for personal annoying my friends benefit.
     
  2. lord nicon21

    lord nicon21 sexy *******

    Joined:
    29 Sep 2003
    Posts:
    1,150
    Likes Received:
    0
  3. yodasarmpit

    yodasarmpit Modder

    Joined:
    27 May 2002
    Posts:
    11,429
    Likes Received:
    237
    Code:
    8	4	2	1		Decimal
    
    0	0	0	0		0
    0	0	0	1		1
    0	0	1	0		2
    0	0	1	1		3
    0	1	0	0		4
    0	1	0	1		5
    0	1	1	0		6
    0	1	1	1		7
    1	0	0	0		8
    1	0	0	1		9
    1	0	1	0		10
    1	0	1	1		11
    1	1	0	0		12
    1	1	0	1		13
    1	1	1	0		14
    1	1	1	1		15
    
    
    
    
    That should give you a rough idea of how binary works compaired to decimal.
    It's similar to roman numerals, in that you add the binary values to get a decimal value.
    ie take the binary value for 7 = 0111 that is (0x8)+(1x4)+(1x2)+(1x1)
     
    Last edited: 23 May 2005

Share This Page