Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- class MyClass {
- public static Scanner in = new Scanner(System.in);
- public static void Start(){
- int n = UserInput();
- int a[][] = UserInputArray(n);
- Print(CheckPolygon(a, n));
- }
- public static void Print(boolean flag) {
- if (flag)
- System.out.println("Введённый многоугольник выпуклый");
- else
- System.out.println("Введённый многоугольник не выпуклый");
- }
- public static int InputValue(int min, int max) {
- int currentValue;
- currentValue = in.nextInt();
- return currentValue;
- }
- public static int[][] UserInputArray (int n) {
- final int MIN_VALUE = -500;
- final int MAX_VALUE = 500;
- int a[][] = new int [2][n];
- a[0] = new int[n];
- a[1] = new int[n];
- System.out.print("Введите координаты вершин в порядке обхода в диапазоне " + MIN_VALUE + ".." + MAX_VALUE + ": \n");
- for (int i = 0; i < n; i++) {
- System.out.print("Введите координаты " + (i + 1) + "-й вершины: ");
- a[0][i] = InputValue(MIN_VALUE, MAX_VALUE);
- a[1][i] = InputValue(MIN_VALUE, MAX_VALUE);
- }
- return a;
- }
- public static boolean CheckPolygon(int[][] a, int n) {
- int i = 0;
- boolean flag = true;
- n--;
- do {
- int j = (i + 1) % n;
- int k = (i + 2) % n;
- int ans = (a[0][j] - a[0][i]) * (a[1][k] - a[1][j]) - (a[1][j] - a[1][i]) * (a[0][k] - a[0][j]);
- if (ans < 0)
- flag = false;
- i++;
- } while (flag && i <=n);
- return flag;
- }
- public static int UserInput() {
- int n;
- final int MIN_SIZE = 3;
- final int MAX_SIZE = 20;
- System.out.print("Данная программа определяет, является ли данный многоугольник выпуклым\n");
- System.out.print("Введите количество вершин в диапазоне " + MIN_SIZE + ".." + MAX_SIZE + ": ");
- n = InputValue(MIN_SIZE, MAX_SIZE);
- return n;
- }
- public static void main(String[] args){
- Start();
- }
- }
Add Comment
Please, Sign In to add comment