Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class test {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double x1 = Double.parseDouble(scanner.nextLine());
- double y1 = Double.parseDouble(scanner.nextLine());
- double x2 = Double.parseDouble(scanner.nextLine());
- double y2 = Double.parseDouble(scanner.nextLine());
- double y = Double.parseDouble(scanner.nextLine());
- double x = Double.parseDouble(scanner.nextLine());
- if ( x >= x1 && x <= x2 && y <= y2 && y >= y1){
- System.out.print("inside");
- } else {
- System.out.print("outside");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment