C#/알고리즘

1. 1330번 두 수 비교하기

dev_sr 2020. 4. 7. 00:29

1) A와 B를 비교하고 <, >, == 중 하나를 출력하기

2) A와 B는 공백 하나로 구분 된다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Study_003
{
    class Program
    {
        static void Main(string[] args)
        {
            var input = Console.ReadLine();
            var arr = input.Split(' ');
            int a = Int32.Parse(arr[0]);
            int b = Int32.Parse(arr[1]);
          
            if (a > b)
            {
                Console.WriteLine(">");
            }
 
            else if (a < b)
            {
                Console.WriteLine("<");
 
            }
 
            else if (a == b)
            {
                Console.WriteLine("==");
            }
        }
    }
}

 

 

1. a<b
2. a>b
3. a==b

 

 

 

출처

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

'C# > 알고리즘' 카테고리의 다른 글

6. 2884번 알람시계  (0) 2020.04.26
5. 14681번 사분면 고르기  (0) 2020.04.26
4. 2753번 윤년  (0) 2020.04.26
3. 10952번 A+B-5  (0) 2020.04.07
2. 9498번 시험 성적  (0) 2020.04.07