728x90
[1053 문제]
#include <stdio.h>
main(){
int a;
scanf("%d", &a);
printf("%d", !a);
}
[1054 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a&&b);
}
[1055 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a||b);
}
[1056 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", (!a&&b)||(a&&!b));
}
[1057 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", (a&&b)||(!a&&!b));
}
728x90
[1058 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", !a&&!b);
}
[1059 문제]
#include <stdio.h>
main(){
int a;
scanf("%d", &a);
printf("%d", ~a);
}
비트단위 연산자
~ | (bitwise) not |
| | or |
^ | xor |
& | and |
<< |
left shift |
>> |
right shift |
[1060 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a&b);
}
[1061 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a|b);
}
[1062 문제]
#include <stdio.h>
main(){
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a^b);
}
728x90
'알고리즘 스터디 > 코드업 기초100제 - C' 카테고리의 다른 글
[CodeUp] 코드업 기초 100제 C - 문제 1033~1042 - 비프시프트 연산, 비교연산 (0) | 2021.05.11 |
---|---|
[CodeUp] 코드업 기초 100제 C - 문제 1033~1042 - 산술연산 (0) | 2021.05.10 |
[CodeUp] 코드업 기초 100제 C - 문제 1023~1032 - 데이터형, 출력변환 (0) | 2021.05.08 |
[CodeUp] 코드업 기초 100제 C - 문제 1012~1022 - 문자열 입출력 (0) | 2021.05.04 |
[CodeUp] 코드업 기초 100제 C - 문제 1001~1011 - 특수문자, 서식문자 출력 및 포인터 (0) | 2021.05.03 |
댓글