tell integer of 53.3
Answers
Answered by
0
Answer:
integer of 53.3 is 53 , I think so
Answered by
8
. First, convert to the binary (base 2) the integer part: 53.
Divide the number repeatedly by 2.
Keep track of each remainder.
We stop when we get a quotient that is equal to zero.
division = quotient + remainder;
53 ÷ 2 = 26 + 1;
26 ÷ 2 = 13 + 0;
13 ÷ 2 = 6 + 1;
6 ÷ 2 = 3 + 0;
3 ÷ 2 = 1 + 1;
1 ÷ 2 = 0 + 1;
2. Construct the base 2 representation of the integer part of the number.
Take all the remainders starting from the bottom of the list constructed above.
53(10) =
11 0101(2)
3. Convert to the binary (base 2) the fractional part: 0.3.
Multiply it repeatedly by 2.
Keep track of each integer part of the results.
Stop when we get a fractional part that is equal to zero.
Similar questions