반응형
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string input_x = Console.ReadLine();
string input_y = Console.ReadLine();
int x = int.Parse(input_x);
int y = int.Parse(input_y);
if ((x > 0 ) && (y > 0)) Console.WriteLine(1);
else if ((x < 0) && (y > 0)) Console.WriteLine(2);
else if ((x < 0) && (y < 0)) Console.WriteLine(3);
else Console.WriteLine(4);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 2525 (0) | 2023.04.07 |
---|---|
백준 C# 2884 (0) | 2023.04.07 |
백준 C# 2753 (0) | 2023.04.07 |
백준 C# 9498 (0) | 2023.04.07 |
백준 C# 1330 (0) | 2023.04.07 |
댓글