codeup-1056 참/거짓이 서로 다를 때에만 참 출력하기 Author: Slay Date: April 28, 2023 11:43:38 Category: codeup Qcodeup 1056 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-1056/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1057 참/거짓이 서로 같을 때에만 참 출력하기 codeup-1055 하나라도 참이면 참 출력하기