ZOJ 3936 Apples and Ideas(水题)

题目:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=369688

代码:

#include<stdio.h>
#include<string.h>

using namespace std;

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int a,b,c,d;
        scanf("%d%d%d%d",&a,&b,&c,&d);
        printf("%d %d\n",c,b+d);
        printf("%d %d\n",a,b+d);
    }
}


你可能感兴趣的:(ZOJ 3936 Apples and Ideas(水题))