작성일 :

문제 링크

27328번 - 三方比較 (Three-Way Comparison)

설명

두 정수를 비교하는 간단한 문제입니다.

입력으로 정수 a 와 정수 b 를 비교하여, 다음과 같이 출력합니다.

  • ab 보다 작은 경우 -1 을 출력
  • ab 보다 큰 경우 1 을 출력
  • ab 가 같은 경우 0 을 출력

Code

[ C# ]

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

      var a = int.Parse(Console.ReadLine()!);
      var b = int.Parse(Console.ReadLine()!);

      if (a < b) Console.WriteLine("-1");
      else if (a > b) Console.WriteLine("1");
      else Console.WriteLine("0");
    }
  }
}



[ C++ ]

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

using namespace std;

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

  int a, b; cin >> a >> b;

  if (a < b) cout << "-1\n";
  else if (a > b) cout << "1\n";
  else cout << "0\n";

  return 0;
}