728x90
반응형
SMALL
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt(), b= sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();
System.out.println( a > c && b > d ? 1:0);
}
}
728x90
반응형
LIST
'프로그래밍 > 자바' 카테고리의 다른 글
[자바] 정올 529 : 선택제어문 - 자가진단2 (0) | 2023.09.20 |
---|---|
[자바] 정올 528 : 선택제어문 - 자가진단1 (0) | 2023.09.20 |
[자바] 정올 113 : 연산자 - 형성평가4 (0) | 2023.09.20 |
[자바] 정올 113 : 연산자 - 형성평가3 (0) | 2023.09.20 |
[자바] 정올 112 : 연산자 - 형성평가2 (0) | 2023.09.20 |