[codeup] 1064 : [기초-삼항연산] 정수 세 개 입력받아 가장 작은 수 출력하기 1234567891011#include int main() { int a, b,c; scanf("%d%d%d", &a, &b,&c); printf("%d", (a Study/code up 2019.07.23
[codeup] 1063 : [기초-삼항연산] 두 정수 입력받아 큰 수 출력하기 1234567891011#include int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a>b ? a : b); return 0;} cs Study/code up 2019.07.23
[codeup] 1062 : [기초-비트단위논리연산] 비트단위로 or 하여 출력하기 1234567891011#include int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a|b); return 0;} cs Study/code up 2019.07.23
[codeup] 1061 : [기초-비트단위논리연산] 비트단위로 xor 하여 출력하기 1234567891011#include int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a^b); return 0;} cs Study/code up 2019.07.23
[codeup] 1060 : [기초-비트단위논리연산] 비트단위로 and 하여 출력하기 1234567891011#include int main() { int a, b; scanf("%d%d", &a, &b); printf("%d", a&b); return 0;} cs Study/code up 2019.07.23
[codeup] 1059 : [기초-비트단위논리연산] 비트단위로 바꿔 출력하기 1234567891011#include int main() { int a, b; scanf("%d", &a); printf("%d", ~a); return 0;} cs Study/code up 2019.07.23
[codeup] 1058 : [기초-논리연산] 둘 다 거짓일 경우만 참 출력하기 123456789101112#include int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", (a == 0) && (b == 0)); return 0;} Colored by Color Scriptercs Study/code up 2019.07.23
[codeup] 1057 : [기초-논리연산] 참/거짓이 서로 같을 때에만 참 출력하기 123456789#includeint main(){ int a,b ; scanf("%d%d", &a,&b); printf("%d", (!a && !b) || (a && b)); return 0;} Colored by Color Scriptercs Study/code up 2019.07.23
[codeup] 1056 : [기초-논리연산] 참/거짓이 서로 다를 때에만 참 출력하기 123456789#includeint main(){ int a,b ; scanf("%d%d", &a,&b); printf("%d", (a && !b) || (!a && b)); return 0;} Colored by Color Scriptercs Study/code up 2019.07.23
[codeup] 1055 : [기초-논리연산] 하나라도 참이면 참 출력하기 123456789#includeint main(){ int a,b ; scanf("%d%d", &a,&b); printf("%d", a||b); return 0;} cs Study/code up 2019.07.23