Contents

조회 수 8790 댓글 0
Atachment
첨부 '2'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
정수를 이진수로 변환


## 재귀함수 호출에 의한 변환 ##
-------------------------------------------------------------------
#include<stdio.h>

void bin(int num){
        if(num<1) return;
        bin(num/2); 
        printf("%d", num%2);
}

void main(){
        int num;

        printf("Enter a Number : ");
        scanf("%d", &num);

        bin(num);
        printf("\n");
}
-------------------------------------------------------------------


## mask에 의한 쉬프트/비트 연산에 의한 변환 ##
-------------------------------------------------------------------
#include<stdio.h>

void main(){
        unsigned char num;
        unsigned char mask=128;
        int i;

        printf("Enter a Number : ");
        scanf("%d", &num);
        printf("%d\n", num);

        if(mask&num) printf("-");
        else printf("+");

        for(i=0; i<7; i++){
                mask = mask >> 1;
                if(mask&num) printf("1");
                else printf("0");
        }
        printf("\n");
}
-------------------------------------------------------------------


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
505 System/OS [unix] AIX쉘 초기 파일 (.cshrc) hooni 2013.04.23 11118
504 Develop [iphone] 파일 업로드 샘플 코드 ㅎㅎ secret hooni 2013.04.23 11120
503 Develop [js] 밀리터리 프로그램(전역일 계산) 7 file hooni 2013.04.23 11132
502 Develop [php] 니우쪽지다.. 받아라~ ^^ file hooni 2003.04.23 11145
501 Develop [c++] Window API(MFC) 오목 게임 file hooni 2003.04.23 11148
500 Develop [c] OpenGL 임시로 여기 올림.. hooni 2003.04.23 11173
499 Database [sql] 쿼리로 문자열 검색해서 일괄 치환하기 hooni 2014.02.13 11206
498 System/OS [linux] 데비안(debian.org) 리눅스 명령어 예제 hooni 2006.04.23 11240
497 Develop [java] 입출력 스트림 2부 (바이트) file hooni 2013.04.23 11260
496 Develop [java] Interface 와 abstract hooni 2013.04.23 11272
495 System/OS [doc] 레드햇 리눅스 메뉴얼 (html버전) file hooni 2013.04.23 11306
494 Develop [html] SVG(Scalable Vector Graphics) 간단 정리 hooni 2014.02.13 11325
Board Pagination Prev 1 ... 52 53 54 55 56 57 58 59 60 61 ... 99 Next
/ 99