Advertisement
deced

Untitled

Oct 13th, 2020
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.88 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3.  
  4.  
  5. public class Main {
  6.     public static void main(String[] args) {
  7.         double y = 0;
  8.         int boof;
  9.         int MasLenght;
  10.         int i;
  11.         int k;
  12.         MasLenght = 0;
  13.         k = 0;
  14.         boolean IsCorrect;
  15.         Scanner scan = new Scanner(System.in);
  16.         System.out.println("Дана последовательность х1, х2, …, хn, упорядоченная в порядке возрастания и вещественное у. Найти такое k, что x[k] < y <= x[k+1].");
  17.         System.out.println("Введите длину массива");
  18.         do {
  19.             IsCorrect = false;
  20.             try {
  21.                 MasLenght = Integer.parseInt(scan.nextLine());
  22.             }
  23.             catch (Exception e) {
  24.                 System.out.println("Ведите число");
  25.                 IsCorrect = true;
  26.             }
  27.             if (MasLenght < 0 && !IsCorrect) {
  28.                 System.out.println("Введите положительное число");
  29.                 IsCorrect = true;
  30.             }
  31.         } while (IsCorrect);
  32.         int[] pos = new int[MasLenght];
  33.         for (i = 0; i < MasLenght; i++) {
  34.             System.out.println("Введите " + (i + 1) + "-й элемент массива");
  35.             do {
  36.                 IsCorrect = false;
  37.                 try {
  38.                     pos[i] = Integer.parseInt(scan.nextLine());
  39.                 }
  40.                 catch (Exception e) {
  41.                     System.out.println("Введите число");
  42.                     IsCorrect = true;
  43.                 }
  44.             } while (IsCorrect);
  45.         }
  46.         for (i = 0; i < MasLenght; i++) {
  47.             for (int j = 0; j < MasLenght - 1 - i; j++) {
  48.                 if (pos[j] > pos[j + 1]) {
  49.                     boof = pos[j + 1];
  50.                     pos[j + 1] = pos[j];
  51.                     pos[j] = boof;
  52.                 }
  53.             }
  54.         }
  55.         System.out.println("Введите вещественное число y");
  56.         do {
  57.             IsCorrect = false;
  58.             try {
  59.                 y = Double.parseDouble(scan.nextLine());
  60.             }
  61.             catch (Exception e) {
  62.                 System.out.println("Введите число");
  63.                 IsCorrect = true;
  64.             }
  65.             if (y <= pos[0] && !IsCorrect) {
  66.                 System.out.println("Ваш Y меньше чем наименьший элемент последовательности. Введите Y больший, чем " + pos[0]);
  67.                 IsCorrect = true;
  68.             }
  69.         } while (IsCorrect);
  70.         for (i = 0; i < MasLenght; i++) {
  71.             if (pos[i] < y && y <= pos[i + 1]) {
  72.                 k = i;
  73.             }
  74.         }
  75.         System.out.println("Ваше число: " + (k + 1));
  76.     }
  77. }
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement