31(10)=Х(2)
163(10)=Х(2)
65(10)=Х(2)
128(10)=Х(2)
Срочно

Ответы

Ответ дал: axes0
0

Ответ:

31(10)=11111(2)

163(10)=10100011(2)

65(10)=1000001(2)

128(10)=10000000(2)

Объяснение:

Ответ дал: pasha888000
0

Ответ:

1) 11111

2) 10100011

3) 1000001

4) 10000000

Объяснение:

Dev C++

#include <iostream>

#include <stdio.h>

#include <stdlib.h>

#include <math.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main() {

int k, x;

scanf("%d", &k);

while(k > 0){

 x = k % 2;

 k = k / 2;

printf("\n%d", x);

}

return 0;  

}

Вас заинтересует