티스토리 뷰
import java.io.IOException;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int max =0;
int[] num = new int[3];
int idx =0 ;
double sum=0;
while(true){ //escape condition 0,0,0
num[0]=sc.nextInt();
num[1]=sc.nextInt();
num[2]=sc.nextInt();
if(num[0]==0&&num[1]==0&&num[2]==0){
break;
}
for(int i=0; i<3; i++){
if(max<num[i]){
max=num[i];
idx=i;
}
}
if(idx==0){ //max num is first number
sum=Math.pow(num[1],2)+Math.pow(num[2],2);
// System.out.println(sum);
if(Math.pow(num[0],2)==sum){
System.out.println("right");
}
else{
System.out.println("wrong");
}
}
if(idx==1){ //max num is first number
sum=Math.pow(num[0],2)+Math.pow(num[2],2);
// System.out.println(sum);
if(Math.pow(num[1],2)==sum){
System.out.println("right");
}
else{
System.out.println("wrong");
}
}
if(idx==2){ //max num is first number
sum=Math.pow(num[0],2)+Math.pow(num[1],2);
// System.out.println(sum);
if(Math.pow(num[2],2)==sum){
System.out.println("right");
}
else{
System.out.println("wrong");
}
}
max=0;
sum=0;
}
// System.out.println(max+" "+idx);
} // end of Main
} // end of class Main
'IT > 백준알고리즘[JAVA]' 카테고리의 다른 글
[java] 직사각형 네번째 점 찾는 방법 (0) | 2021.11.24 |
---|---|
[java] 사각형에서 경계선 최단거리 구하기 (0) | 2021.11.24 |
java로 소수인지 판별하기 (0) | 2021.11.23 |
2742:기찍 N (0) | 2021.06.14 |
2741:N 찍기 (0) | 2021.06.14 |
댓글