본문으로 바로가기

출제 링크 : https://www.acmicpc.net/problem/14681

 

14681번: 사분면 고르기

점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다.

www.acmicpc.net

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Solution
{
    class Program
    {
        static void Main(string[] args)
        {
            int num1 = int.Parse(Console.ReadLine());
            int num2 = int.Parse(Console.ReadLine());

            if(num1 > 0 && num2 > 0) //+,+
            {
                Console.WriteLine(1);
            }
            else if(num1 < 0 && num2 > 0) //-,+
            {
                Console.WriteLine(2);
            }
            else if (num1 < 0 && num2 < 0) //-,-
            {
                Console.WriteLine(3);
            }
            else //+,-
            {
                Console.WriteLine(4);
            }
        }
    }
}