Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- class MyClass {
- public static void main(String[] args){
- final int MIN_SIZE = 1;
- final int MAX_SIZE = 10001;
- final int MIN_VALUE = -1000000001;
- final int MAX_VALUE = 1000000001;
- System.out.println("Данная программа 'переворачивает' заданную последовательность");
- boolean isNotValid = true;
- int n;
- int temp;
- System.out.print("Введите кол-во элементов последовательность в диапазоне " + (MIN_SIZE + 1) + ".." + (MAX_SIZE - 1) + ": ");
- Scanner in = new Scanner(System.in);
- do {
- n = Integer.parseInt(in.nextLine());
- if (n > MIN_SIZE && n < MAX_SIZE)
- isNotValid = false;
- else
- System.out.println("Введите кол-во элементов последовательности в заданном диапазоне");
- } while (isNotValid);
- int a[] = new int[n];
- System.out.println("Введите элементы последовательности в диапазоне " + (MIN_VALUE + 1) + ".." + (MAX_VALUE - 1) + " через Enter:");
- for(int i = 0; i < n; i++) {
- isNotValid = true;
- do {
- System.out.print("Введите " + (i + 1) + "-й элемент: ");
- a[i] = Integer.parseInt(in.nextLine());
- if (a[i] > MIN_VALUE && a[i] < MAX_VALUE)
- isNotValid = false;
- else
- System.out.println("Введите элемент последовательности в заданном диапазоне");
- } while(isNotValid);
- }
- for (int i = 0; i < n / 2; i++) {
- temp = a[i];
- a[i] = a[n - i - 1];
- a[n - i - 1] = temp;
- }
- System.out.println("'Перевёрнутая' последовательность: ");
- for (int i = 0; i< n; i++) {
- System.out.print(a[i]+" ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement