반응형

 

 

 

<코드>

import java.util.*;
public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		int l[] = new int[3];

		while (true) {
			l[0] = sc.nextInt();
			l[1] = sc.nextInt();
			l[2] = sc.nextInt();
			
			if(l[0]+l[1]+l[2] == 0) break;
			
		    Arrays.sort(l);
		    
		    if(l[2]*l[2] == l[0]*l[0] + l[1]*l[1]) System.out.println("right");
		    else System.out.println("wrong");
		}
	}
}

 

 

https://www.acmicpc.net/problem/4153

 

4153번: 직각삼각형

입력은 여러개의 테스트케이스로 주어지며 마지막줄에는 0 0 0이 입력된다. 각 테스트케이스는 모두 30,000보다 작은 양의 정수로 주어지며, 각 입력은 변의 길이를 의미한다.

www.acmicpc.net

 

반응형

+ Recent posts