https://www.acmicpc.net/problem/14681
Python
x = int(input())
y = int(input())
if (x > 0) and (y > 0) :
print(1)
elif (x < 0) and (y < 0) :
print(3)
elif (x < 0) and (y > 0):
print(2)
elif (x > 0) and (y < 0):
print(4)
else:
pass
Java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int x = scan.nextInt();
int y = scan.nextInt();
if (x > 0 && y > 0) {
System.out.println(1);
} else if(x < 0 && y > 0) {
System.out.println(2);
} else if(x < 0 && y < 0) {
System.out.println(3);
} else if(x > 0 && y < 0) {
System.out.println(4);
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[Python/Java] 백준 2739번 - 구구단 (0) | 2020.06.09 |
---|---|
[Python/Java] 백준 2884번 - 알람 시계 (0) | 2020.06.08 |
[Python/Java] 백준 2753번 - 윤년 (0) | 2020.06.08 |
[Python/Java] 백준 9498번 - 시험 성적 (0) | 2020.06.08 |
[Python/Java] 백준 1330번 - 두 수 비교하기 (0) | 2020.06.08 |
댓글