반응형
http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&code=2815
#include <stdio.h>
int N, cnt, R;
int bin[32];
int main(void)
{
cnt = 31;
scanf("%d", &N);
while (N)
{
R = N % 2;
N /= 2;
bin[cnt--] = R;
}
for (int i = cnt + 1; i < 32; i++)
{
printf("%d", bin[i]);
}
return 0;
}
반응형
'프로그래밍 알고리즘' 카테고리의 다른 글
[정올 3106] 진법 변환 (0) | 2023.01.09 |
---|---|
[정올 3101] 요세푸스 문제1 (0) | 2023.01.09 |
[정올 2811] 소수와 합성수 (0) | 2023.01.09 |
[정올 2809] 약수 (0) | 2023.01.09 |
[정올 2613] 토마토(고) (0) | 2023.01.09 |