Home > Common Problem > body text

Convert decimal number 35 to binary number

Release: 2019-06-17 15:26:42
Original
59750 people have browsed it

Convert decimal number 35 to binary number

The decimal number 35 is converted into a binary number 100011.

Calculation method:

35/2=17余1
17/2=8余1
8/2=4余0
4/2=2余0
2/2=1余0
1/2=0余1
Copy after login

The reciprocal of the remainder is the result 100011.

Convert decimal to other bases:

1. The general method to convert decimal to any base is: divide by X and take the remainder inverted method (X represents base number).

2. Convert decimal to binary first and then to octal or hexadecimal.

Related recommendations:Decimal to binary formula

The above is the detailed content of Convert decimal number 35 to binary number. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template