본문 바로가기
Programming/Judge

Algospot : DRAWRECT

by deviAk 2014. 12. 11.
반응형


https://algospot.com/judge/problem/read/DRAWRECT


<결과>



<코드>

#include<iostream>

using namespace std;

int GetDifferent(int a, int b, int c)
{
	return (a == b) ? c : (b == c) ? a : b;
}

int main() {

	int num_cases = 0;
	cin >> num_cases;

	for (int i = 0; i < num_cases; ++i)
	{
		int x[3] = { 0, };
		int y[3] = { 0, };

		for (int j = 0; j < 3; ++j)
		{
			cin >> x[j] >> y[j];
		}

		cout << GetDifferent(x[0], x[1], x[2]) << " " << GetDifferent(y[0], y[1], y[2]) << endl;
	}
}


반응형