"2진수의 특정 자리수 출력"의 두 판 사이의 차이

16번째 줄: 16번째 줄:
}
}
</source>
</source>
[[분류: 비트]]

2019년 1월 29일 (화) 01:38 판

1 개요

2진수의 특정 자리수 출력

2 C

#include <stdio.h>
int main() {
    int x = 0b111001;
    printf("%d\n", (x>>5)&1); // 1
    printf("%d\n", (x>>4)&1); // 1
    printf("%d\n", (x>>3)&1); // 1
    printf("%d\n", (x>>2)&1); // 0
    printf("%d\n", (x>>1)&1); // 0
    printf("%d\n", (x>>0)&1); // 1
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}