작성일 :

문제 링크

15178번 - Angles

설명

입력으로 세 개의 각도들이 주어질 때, 세 각도의 합이 180 도인지 판별하는 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var n = int.Parse(Console.ReadLine()!);

      for (int i = 0; i < n; i++) {
        var num = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();

        if (num[0] + num[1] + num[2] == 180)
          Console.WriteLine($"{num[0]} {num[1]} {num[2]} Seems OK");
        else Console.WriteLine($"{num[0]} {num[1]} {num[2]} Check");
      }

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n; cin >> n;

  for (int i = 0; i < n; i++) {
    int a, b, c; cin >> a >> b >> c;

    if (a + b + c == 180)
      cout << a << " " << b << " " << c << " Seems OK\n";
    else cout << a << " " << b << " " << c << " Check\n";
  }

  return 0;
}