1) 10000101
2) 101110011
3) 1001011000
Объяснение:
Dev C++
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main() {
int s, k, t;
scanf("%d", &s);
while (s > 0){
k = s % 2;
s = s / 2;
printf("%d", k);
}
return 0;
1) 10000101
2) 101110011
3) 1001011000
Объяснение:
Dev C++
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main() {
int s, k, t;
scanf("%d", &s);
while (s > 0){
k = s % 2;
s = s / 2;
printf("%d", k);
}
return 0;
}