codeup-1058 둘 다 거짓일 경우만 참 출력하기 Author: Slay Date: April 28, 2023 11:43:43 Category: codeup Qcodeup 1058 C code123456789101112#include <stdio.h>int main(void){ int a,b,c; scanf("%d %d",&a, &b); printf("%d",(!a&&!b)||(!a&&!b)); return 0;} Author: Slay Permalink: http://sean-baek.github.io/2023/04/28/codeup-1058/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1059 비트단위로 NOT 하여 출력하기 codeup-1057 참/거짓이 서로 같을 때에만 참 출력하기