세 각을 입력받아 어떤 삼각형인지 판단하는 문제이다. 조건문만 잘 활용한다면 간단히 해결할 수 있다. 코드는 다음과 같다. import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int z = sc.nextInt(); if (x == 60 && y == 60 && z == 60) { System.out.println("Equilateral"); } else if (x + y + z == 180) { if (x != y && y != z && z != x) { Sy..