백준 1330 두 수 비교하기
Console Programming/C# Console 2019. 9. 26. 08:16
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
|
using System;
namespace _1330
{
class Program
{
static void Main(string[] args)
{
string input = Console.ReadLine();
int a = int.Parse(arr[0]);
int b = int.Parse(arr[1]);
if (a>b)
{
Console.WriteLine(">");
}
else if (a<b)
{
Console.WriteLine("<");
}
else
{
Console.WriteLine("==");
}
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
![](https://blog.kakaocdn.net/dn/m9tO7/btqyzvG2DGl/qAOpwImukz8xKMrMHYN0uk/img.png)
'Console Programming > C# Console' 카테고리의 다른 글
백준 2753 윤년 (0) | 2019.09.26 |
---|---|
백준 9498 시험 성적 (0) | 2019.09.26 |
백준 10430 나머지 (0) | 2019.09.25 |
백준 10869 사칙연산 (0) | 2019.09.25 |
백준 1008 A/B (0) | 2019.09.25 |