浙江省2016省赛同步赛A题_Apples and Ideas

题目链接点击打开链接

这道题就是一个非常水的题,直接按照题意进行交换即可!!

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <algorithm>
#include <stack>
#include <queue>
#include <map>
#include <vector>
#include <cmath>
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
using namespace std;
const int maxn = 55555;
int sum[maxn << 2];

int main(void)
{
	//freopen("in.txt", "r", stdin);
	int T;
	int a, b, c, d;

	scanf("%d", &T);
	while (T--)
	{

		scanf("%d%d%d%d", &a, &b, &c, &d);
		printf("%d %d\n", c, b + d);
		printf("%d %d\n", a, b + d);
	}
	return 0;
}

你可能感兴趣的:(浙江省2016省赛同步赛A题_Apples and Ideas)