sm 기술 블로그
99. 4153(직각삼각형) 본문
import java.util.*;
import java.io.*;
public class Main{
public static void main(String[] args)throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
while(true) {
String[] Pythagoras = br.readLine().split(" ");
int a = Integer.parseInt(Pythagoras[0]);
int b = Integer.parseInt(Pythagoras[1]);
int c = Integer.parseInt(Pythagoras[2]);
if(a==0 && b==0 && c==0) {
break;
}
a=(int)Math.pow(a, 2);
b=(int)Math.pow(b, 2);
c=(int)Math.pow(c, 2);
if(a+b==c || a+c==b || b+c==a) {
sb.append("right").append("\n");
}
else {
sb.append("wrong").append("\n");
}
}
System.out.print(sb);
}
}
문제요약
피타고라스를 아니?
설명
a^2 + b^2 = c^2가 피타고라스의 정리인 것을 아는지 물어보는 문제
'문제 > 백준_자바' 카테고리의 다른 글
101. 택시 기하학(3053) (0) | 2022.06.22 |
---|---|
100. 2477(참외 밭) (0) | 2022.06.22 |
98. 3009(네 번째 점) (0) | 2022.06.21 |
97. 1085(직사각형에서 탈출) (0) | 2022.06.21 |
96. 11478(서로 다른 문자열의 개수) (0) | 2022.06.21 |
Comments