Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/data/complement.c
2022-03-03 20:11:51 +03:00

15 lines
175 B
C

#include <stdio.h>
int main() {
int i;
char y;
scanf("%hhd", &y);
if (y < 0)
y = ~(-y) + 1;
for (i = 7; i >= 0; --i) {
printf("%d", (y >> i) & 1);
}
return 0;
}