d2jsp
Log InRegister
d2jsp Forums > Diablo II > Archives > Softcore USWest 2009 > 7 Fg To Who....
Prev123
Add Reply New Topic
Member
Posts: 18,878
Joined: Oct 13 2009
Gold: Locked
Trader: Scammer
Warn: 10%
Dec 28 2009 12:35am
0110011101101111 0010000001100110011101010110001101101011 0010000001111001011011110111010101110010 0010000001110011011001010110110001100110 00100000011110010110111101110101 0010000001100100011101010110110101100010 00100000011011010110111101110100011010000110010101110010 0010000001100110011101010110001101101011011010010110111001100111 001000000110011001100001011001110110100101110100 0010000001110101 0010000001110100011011110110111101101011 00100000011101000110100001100101 0010000001110100011010010110110101100101 001000000111010001101111 0010000001110010011001010110000101100100 0010000001110100011010000110100101110011 00100000011110010110111101110101 0010000001101110011001010110010101100100 001000000111010001101111 001000000110001001100101 0010000001110011011010000110111101110100 001000000110100101101110 00100000011101000110100001100101 0010000001100110011101010110001101101011011010010110111001100111 0010000001101000011001010110000101100100
Member
Posts: 3,046
Joined: Oct 17 2008
Gold: 24,616.93
Dec 28 2009 12:35am
1. Let D= the number we wish to convert from decimal to binary.
2. Repeat until D=0:
a) If D is odd, put "1" in the leftmost open column, and subtract 1 from D.
b) If D is even, put "0" in the leftmost open column.
c) Divide D by 2.
End Repeat
For the number 163, this works as follows:
1. Let D=163
2. b) D is odd, put a 1 in the 2^0 column.
Subtract 1 from D to get 162.
c) Divide D=162 by 2.
Temporary Result: 01 New D=81
D does not equal 0, so we repeat step 2.

2. b) D is odd, put a 1 in the 2^1 column.
Subtract 1 from D to get 80.
c) Divide D=80 by 2.
Temporary Result: 11 New D=40
D does not equal 0, so we repeat step 2.

2. b) D is even, put a 0 in the 2^2 column.
c) Divide D by 2.
Temporary Result:011 New D=20

2. b) D is even, put a 0 in the 2^3 column.
c) Divide D by 2.
Temporary Result: 0011 New D=10

2. b) D is even, put a 0 in the 2^4 column.
c) Divide D by 2.
Temporary Result: 00011 New D=5

2. a) D is odd, put a 1 in the 2^5 column.
Subtract 1 from D to get 4.
c) Divide D by 2.
Temporary Result: 100011 New D=2

2. b) D is even, put a 0 in the 2^6 column.
c) Divide D by 2.
Temporary Result: 0100011 New D=1

2. a) D is odd, put a 1 in the 27 column.
Subtract 1 from D to get D=0.
c) Divide D by 2.
Temporary Result: 10100011 New D=0

D=0, so we are done, and the decimal number 163 is equivalent to the binary number 10100011.
Member
Posts: 47,261
Joined: Nov 6 2007
Gold: Locked
Trader: Scammer
Warn: 50%
Dec 28 2009 12:36am
Quote (Ivanmk @ Dec 27 2009 11:35pm)
1. Let D= the number we wish to convert from decimal to binary.
2. Repeat until D=0:
a) If D is odd, put "1" in the leftmost open column, and subtract 1 from D.
b) If D is even, put "0" in the leftmost open column.
c) Divide D by 2.
End Repeat
For the number 163, this works as follows:
1. Let D=163
2. b) D is odd, put a 1 in the 2^0 column.
Subtract 1 from D to get 162.
c) Divide D=162 by 2.
Temporary Result: 01 New D=81
D does not equal 0, so we repeat step 2.

2. b) D is odd, put a 1 in the 2^1 column.
Subtract 1 from D to get 80.
c) Divide D=80 by 2.
Temporary Result: 11 New D=40
D does not equal 0, so we repeat step 2.

2. b) D is even, put a 0 in the 2^2 column.
c) Divide D by 2.
Temporary Result:011 New D=20

2. b) D is even, put a 0 in the 2^3 column.
c) Divide D by 2.
Temporary Result: 0011 New D=10

2. b) D is even, put a 0 in the 2^4 column.
c) Divide D by 2.
Temporary Result: 00011 New D=5

2. a) D is odd, put a 1 in the 2^5 column.
Subtract 1 from D to get 4.
c) Divide D by 2.
Temporary Result: 100011 New D=2

2. b) D is even, put a 0 in the 2^6 column.
c) Divide D by 2.
Temporary Result: 0100011 New D=1

2. a) D is odd, put a 1 in the 27 column.
Subtract 1 from D to get D=0.
c) Divide D by 2.
Temporary Result: 10100011 New D=0

D=0, so we are done, and the decimal number 163 is equivalent to the binary number 10100011.


The fuck
Member
Posts: 899
Joined: Jun 12 2006
Gold: 0.00
Dec 28 2009 12:36am
Quote (Ivanmk @ Dec 28 2009 06:35am)
1. Let D= the number we wish to convert from decimal to binary.
2. Repeat until D=0:
a) If D is odd, put "1" in the leftmost open column, and subtract 1 from D.
b) If D is even, put "0" in the leftmost open column.
c) Divide D by 2.
End Repeat
For the number 163, this works as follows:
1. Let D=163
2. b) D is odd, put a 1 in the 2^0 column.
Subtract 1 from D to get 162.
c) Divide D=162 by 2.
Temporary Result: 01 New D=81
D does not equal 0, so we repeat step 2.

2. b) D is odd, put a 1 in the 2^1 column.
Subtract 1 from D to get 80.
c) Divide D=80 by 2.
Temporary Result: 11 New D=40
D does not equal 0, so we repeat step 2.

2. b) D is even, put a 0 in the 2^2 column.
c) Divide D by 2.
Temporary Result:011 New D=20

2. b) D is even, put a 0 in the 2^3 column.
c) Divide D by 2.
Temporary Result: 0011 New D=10

2. b) D is even, put a 0 in the 2^4 column.
c) Divide D by 2.
Temporary Result: 00011 New D=5

2. a) D is odd, put a 1 in the 2^5 column.
Subtract 1 from D to get 4.
c) Divide D by 2.
Temporary Result: 100011 New D=2

2. b) D is even, put a 0 in the 2^6 column.
c) Divide D by 2.
Temporary Result: 0100011 New D=1

2. a) D is odd, put a 1 in the 27 column.
Subtract 1 from D to get D=0.
c) Divide D by 2.
Temporary Result: 10100011 New D=0

D=0, so we are done, and the decimal number 163 is equivalent to the binary number 10100011.


Easier to go here http://home2.paulschou.net/tools/xlate/
Member
Posts: 18,878
Joined: Oct 13 2009
Gold: Locked
Trader: Scammer
Warn: 10%
Dec 28 2009 12:37am
Quote (Ivanmk @ Dec 28 2009 12:35am)
1. Let D= the number we wish to convert from decimal to binary.
2. Repeat until D=0:
a) If D is odd, put "1" in the leftmost open column, and subtract 1 from D.
b) If D is even, put "0" in the leftmost open column.
c) Divide D by 2.
End Repeat
For the number 163, this works as follows:
1. Let D=163
2. b) D is odd, put a 1 in the 2^0 column.
Subtract 1 from D to get 162.
c) Divide D=162 by 2.
Temporary Result: 01 New D=81
D does not equal 0, so we repeat step 2.

2. b) D is odd, put a 1 in the 2^1 column.
Subtract 1 from D to get 80.
c) Divide D=80 by 2.
Temporary Result: 11 New D=40
D does not equal 0, so we repeat step 2.

2. b) D is even, put a 0 in the 2^2 column.
c) Divide D by 2.
Temporary Result:011 New D=20

2. b) D is even, put a 0 in the 2^3 column.
c) Divide D by 2.
Temporary Result: 0011 New D=10

2. b) D is even, put a 0 in the 2^4 column.
c) Divide D by 2.
Temporary Result: 00011 New D=5

2. a) D is odd, put a 1 in the 2^5 column.
Subtract 1 from D to get 4.
c) Divide D by 2.
Temporary Result: 100011 New D=2

2. b) D is even, put a 0 in the 2^6 column.
c) Divide D by 2.
Temporary Result: 0100011 New D=1

2. a) D is odd, put a 1 in the 27 column.
Subtract 1 from D to get D=0.
c) Divide D by 2.
Temporary Result: 10100011 New D=0

D=0, so we are done, and the decimal number 163 is equivalent to the binary number 10100011.


the fuck
Member
Posts: 3,061
Joined: Mar 23 2009
Gold: 0.01
Dec 28 2009 12:37am
wow ok give me a few and ill make a new one
Go Back To Softcore USWest 2009 Topic List
Prev123
Add Reply New Topic