[SWEA] 직사각형 길이 찾기 Posted on 2020-01-17 | In Problem_Solving | 문제 보러가기 제한사항 입력으로 직사각형이 불가능한 경우는 주어지지 않는다. 세 자연수의 범위는 a, b, c(1 ≤ a, b, c ≤ 100) 이다. 첫번째 생각 같은 변을 찾고, 남은 숫자를 출력한다. Code 123456789101112131415161718192021222324import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T= sc.nextInt(); for(int tc=1; tc<=T; tc++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int res; if( a == b) { res = c; } else if ( a == c) { res = b; } else { res = a; } System.out.println("#"+tc+" "+res); } } }