2진수의 특정 자리수 출력

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:34 판 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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
}

3 PHP

<?php
$x = 0b111001;
$temp = decbin($x);
echo $temp{0} . "\n"; // 1
echo $temp{1} . "\n"; // 1
echo $temp{2} . "\n"; // 1
echo $temp{3} . "\n"; // 0
echo $temp{4} . "\n"; // 0
echo $temp{5} . "\n"; // 1

4 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}