Views 7605 Votes 0 Comment 0
Atachment
Attachment '2'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
정수를 이진수로 변환


## 재귀함수 호출에 의한 변환 ##
-------------------------------------------------------------------
#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
No. Category Subject Author Date Views
197 Develop [php] 한글 문자열 자르기 (utf-8) hooni 2015.11.10 1454
196 Develop [php] 한샘 전자발주 시스템.. file hooni 2013.04.23 12021
195 Develop [php] 현재에서 일정한 날짜 더하기.. hooni 2013.04.23 7156
194 Develop [php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window) 2 file hooni 2017.12.15 2765
193 Develop [php][laravel] 라라벨 프로젝트 생성 및 구조 file hooni 2017.12.15 2551
192 Develop [php][laravel] 초간단 MacOS에서 Laravel 개발 환경 구축 hooni 2017.12.15 2111
191 PPT [ppt] Equation Solving 발표 자료 (@AjaxUI랩 밋업데이 2012.02.28) file hooni 2015.07.22 994
190 PPT [ppt] Equation Solving 발표 자료 (@PWE랩 톡데이 2011.07.26) file hooni 2013.04.23 24722
189 PPT [ppt] Information Security 발표 자료 (@Team Study 2012.11.15) file hooni 2015.07.22 964
188 PPT [ppt] iOS 플라랩#01(2015.02.26) 발표 자료 file hooni 2015.02.25 810
187 PPT [ppt] iOS 플라랩#02(2015.03.19) 발표 자료 file hooni 2015.04.24 977
186 PPT [ppt] iOS 플라랩#03(2015.04.27) 발표 자료 file hooni 2015.04.24 1167
185 Develop [ppt] iOS 플라랩#04(2015.06.19) 발표 자료 file hooni 2015.06.04 770
184 PPT [ppt] Macro for board game 발표자료 (@Team Study 2013.01.18) 1 file hooni 2015.07.22 1375
183 PPT [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ file hooni 2013.04.23 12120
182 PPT [ppt] OCB기술개발팀 OJT 자료 file hooni 2015.11.13 1268
Board Pagination Prev 1 ... 60 61 62 63 64 ... 74 Next
/ 74