Study/code up
[codeup] 1059 : [기초-비트단위논리연산] 비트단위로 바꿔 출력하기
1nfra
2019. 7. 23. 04:08
728x90
1 2 3 4 5 6 7 8 9 10 11 | #include <stdio.h> int main() { int a, b; scanf("%d", &a); printf("%d", ~a); return 0; } | cs |
728x90