컴공 공부/백준

[백준 알고리즘] 3009번 네번째 점 C언어

무무뭉? 2021. 1. 7. 17:21
#include <stdio.h>

int main()
{
    int i, j;
    int arr[3][2];
    for (i = 0; i < 3; i++)
    {
        for (j = 0; j < 2; j++)
        {
            scanf("%d", &arr[i][j]);
        }
    }
    int tempx = arr[0][0];
    int tempy = arr[0][1];

    if (arr[0][0] == arr[1][0])
    {
        tempx = arr[2][0];
    }
    else if (arr[0][0] == arr[2][0])
    {
        tempx = arr[1][0];
    }

    if (arr[0][1] == arr[1][1])
    {
        tempy = arr[2][1];
    }
    else if (arr[0][1] == arr[2][1])
    {
        tempy = arr[1][1];
    }
    printf("%d %d", tempx, tempy);
    return 0;
}