Advertisement
dxvmxnd

Untitled

Sep 21st, 2023
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.35 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main {
  3.     public static void main(String[] args) {
  4.         float x = 0, y = 0;
  5.         boolean isIncorrect;
  6.         Scanner in = new Scanner(System.in);
  7.  
  8.         do{
  9.             isIncorrect = false;
  10.             try {
  11.                 System.out.println("Введите координату X точки M");
  12.                 x = Float.parseFloat(in.nextLine());
  13.             }
  14.             catch (Exception e) {
  15.                 System.err.println("Неверный ввод данных!");
  16.                 isIncorrect = true;
  17.             }
  18.         } while (isIncorrect);
  19.  
  20.         do{
  21.             isIncorrect = false;
  22.             try {
  23.                 System.out.println("Введите координату Y точки M");
  24.                 y = Float.parseFloat(in.nextLine());
  25.             }
  26.             catch (Exception e) {
  27.                 System.err.println("Неверный ввод данных!");
  28.                 isIncorrect = true;
  29.             }
  30.         } while (isIncorrect);
  31.        
  32.         if (Math.abs(x) + Math.abs(y)<=1 ) {
  33.             System.out.println("Точка M входит в ограниченную плоскость");
  34.         }
  35.         else {
  36.             System.out.println("Точка M НЕ входит в ограниченную плоскость");
  37.         }
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement