Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- float x = 0, y = 0;
- boolean isIncorrect;
- Scanner in = new Scanner(System.in);
- do{
- isIncorrect = false;
- try {
- System.out.println("Введите координату X точки M");
- x = Float.parseFloat(in.nextLine());
- }
- catch (Exception e) {
- System.err.println("Неверный ввод данных!");
- isIncorrect = true;
- }
- } while (isIncorrect);
- do{
- isIncorrect = false;
- try {
- System.out.println("Введите координату Y точки M");
- y = Float.parseFloat(in.nextLine());
- }
- catch (Exception e) {
- System.err.println("Неверный ввод данных!");
- isIncorrect = true;
- }
- } while (isIncorrect);
- if (Math.abs(x) + Math.abs(y)<=1 ) {
- System.out.println("Точка M входит в ограниченную плоскость");
- }
- else {
- System.out.println("Точка M НЕ входит в ограниченную плоскость");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement