출제 링크 : https://www.acmicpc.net/problem/14681
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);
}
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 3단계(1)] 2739번 : 구구단 (0) | 2021.08.31 |
---|---|
[Baekjoon 2단계(5)] 2884번 : 알람 시계 (0) | 2021.08.31 |
[Baekjoon 2단계(3)] 2753번 : 윤년 (0) | 2021.08.31 |
[Baekjoon 2단계(2)] 9498번 : 시험 성적 (0) | 2021.08.31 |
[Baekjoon 2단계(1)] 1330번 : 두 수 비교하기 (0) | 2021.08.31 |