공부하기/백준

[Java] 백준 풀기 15178 - Angles

XEV 2023. 5. 24. 23:46

자바 백준 15178번

브론즈 3

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

 

15178번: Angles

You will be given a set of results from one class. It will start with a single integer, N, the number of pupils who have supplied readings. (0 < N <= 30). There will then follow N lines, each containing 3 positive integers separated by spaces. The numbers

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 수학, 구현, 사칙연산

 

 

 

 

 

문제 풀기

주어진 테스트 케이스 만큼 반복문을 실행 시킨뒤 세 개의 각도를 각각 입력 받는다. 입력 받은 세 숫자의 합이 180 과 같다면  "Seems OK" 를.. 그렇지 않으면 "Check" 를 입력된 세 각도와 함께 답안 출력에 맞춰 제출한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        
        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        
        for (int i = 0; i < testCase; i++) {
            int angle_1 = sc.nextInt();
            int angle_2 = sc.nextInt();
            int angle_3 = sc.nextInt();
            
            if (angle_1 + angle_2 + angle_3 == 180) {
                System.out.println(angle_1 + " " + angle_2 + " " +  angle_3 + " Seems OK");
            }
            else {
                System.out.println(angle_1 + " " + angle_2 + " " +  angle_3 + " Check");
            }
        }
        
    }
}