반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <iostream> using namespace std; int main() { int a[3][2],x,y; for (int i = 0; i < 3; i++) for (int j = 0; j < 2; j++) cin >> a[i][j]; x = a[0][0]; y = a[0][1]; x = a[1][0] == x ? a[2][0] : (a[1][0] == a[2][0] ? x : a[1][0]); y = a[1][1] == y ? a[2][1] : (a[1][1] == a[2][1] ? y : a[1][1]); cout << x << ' ' << y; } | cs |
'Algorithm' 카테고리의 다른 글
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 10162번:전자레인지 답 (0) | 2016.12.18 |
---|---|
(C++) - 백준(BOJ) 2754 : 학점계산 답 (0) | 2016.12.10 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 1676번:팩토리얼 0의 개수답 (0) | 2016.12.10 |
(C++) - 백준(BOJ) 4446번 : ROT13 답 (0) | 2016.12.10 |
C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 5598번:카이사르 암호 답 (0) | 2016.12.10 |