10 진수 - 2 진 온라인 변환 도구

십진수 10

2 진수 2

16 진수 16

10 월 8 일

정보10 진수 - 2 진 온라인 변환 도구:

이 온라인 10 진수 - 2 진 변환 도구는 10 진수를 2 진수로 변환하는 데 유용합니다.

십진수:

십진법 (아랍어라고도 함)은 일상 생활에서 가장 많이 사용되는 디지털 시스템 인 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) 포함하여 10 자입니다.

이진:

이진수는 2 자 (0, 1) 입니다 .4 비트 이진 문자는 1 자리 16 진수를 나타낼 수 있으며 3 자리 이진 문자는 1 자리 8 진수를 나타낼 수 있습니다. 이진수는 어셈블리 언어에 가장 가까운 디지털 시스템입니다.

comic decimal to binary

십진법에서 이진법으로 변환하는 방법?

  1. 1 단계 : 십진수를 2로 나누어 정수와 나머지를 얻습니다.

  2. 2 단계 : 첫 번째 단계의 나머지 부분을 2 진 문자로 변환하십시오.

  3. 3 단계 : 첫 번째 단계의 정수 지수로 나누고 0이 될 때까지 1 단계를 반복합니다.

예제 1 : 10 진수 "13"은 2 진수로 변환됩니다 (결과는 "1101"입니다).

각 10 진수를 2로 나눕니다. 정수 몫 나머지 (10-ary) 나머지 (2-ary) 위치
13/2 6 1 1 0
6/2 3 0 0 1
3/2 1 1 1 2
1/2 0 1 1 3

십진수 - 이진 변환 표:

십진수 이진 십진수 이진
1 1 21 10101
2 10 22 10110
11 3 23 10111
4 100 24 11000
5 101 25 11001
6 110 26 11010
7 111 27 11011
8 1000 28 11100
9 1001 29 11101
10 1010 30 11110
11 1011 31 11111
12 1100 32 100000
13 1101 33 100001
14 1110 34 100010
15 1111 35 100011
16 10000 36 100100
17 10001 37 100101
18 10010 38 100110
19 10011 39 100111
20 10100 40 101000

링크:

위키피디아 (바이너리): https://en.wikipedia.org/wiki/Binary_number

위키 백과 (10 진수): https://en.wikipedia.org/wiki/Decimal

파이썬에서 십진수 - 이진 변환:

def decimal_to_binary(decimal_str):
    decimal_number = int(decimal_str, 10)
    binary_number = bin(decimal_number)
    return binary_number


decimal_input = '2014'
binary_output = decimal_to_binary(decimal_input)
print('binary result is:{0}'.format(binary_output))

-------------------
binary result is:0b11111011110

Java에서 10 진수에서 2 진수로 변환:

public class NumberConvertManager {
    public static String decimal_to_binary(String decimal_str) {
        return Integer.toBinaryString(Integer.parseInt(decimal_str));
    }

    public static void main(String[] args) {
        String decimal_input = "2014";
        String binary_output = decimal_to_binary(decimal_input);
        System.out.println("binary result is:" + binary_output);
    }
}

-------------------
binary result is:11111011110