poj 2495 Incomplete chess boards

poj 2495 Incomplete chess boards,第1张

poj 2495 Incomplete chess boards
#include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>using namespace std;int main(){int t;    scanf("%d", &t);    for (int i =0; i < t; i++)    {        printf("Scenario #%d:n", i +1);        int a, b, c, d;        scanf("%d%d%d%d", &a, &b, &c, &d);        if (((a + b) &1) == ((d + c) &1)) printf("0n");        else printf("1n");        putchar('n');    }    return 0;}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4907929.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存