The binary 110111 corresponds to the decimal number 55.
Calculation process:
(110111)B=(1*2^5 1*2^4 1*2^2 1*2^1 1*2^0) D
The conversion principle from binary to decimal: starting from the first number on the right side of the binary, multiply each number by 2 to the nth power, n starts from 0, and increases by 1 each time. Then the sum of each number obtained is the decimal number.
The above is the detailed content of What is the decimal equivalent of 110111 in binary?. For more information, please follow other related articles on the PHP Chinese website!