Advertisement
dxvmxnd

Untitled

Sep 24th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.50 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main {
  3.     public static void main(String[] args) {
  4.         int n=0, i;
  5.         int array[];
  6.         boolean isIncorrect;
  7.         Scanner scan = new Scanner(System.in);
  8.  
  9.         do {
  10.             isIncorrect = false;
  11.             System.out.println("Введите колличество элементов в массиве: ");
  12.             try {
  13.                 n = Integer.parseInt(scan.nextLine());
  14.             }
  15.             catch (Exception e) {
  16.                 System.err.println("Неверный ввод данных!");
  17.                 isIncorrect = true;
  18.             }
  19.         } while (isIncorrect);
  20.  
  21.    
  22.         for (i = 1; i <= n; ++i) {
  23.             do {
  24.                 isIncorrect = false;
  25.                 System.out.println("Введите " + i + " элемент массива");
  26.                 try {
  27.                     array[i] = Integer.parseInt(scan.nextLine());
  28.                 }
  29.                 catch (Exception e) {
  30.                     System.err.println("Неверный ввод данных!");
  31.                     isIncorrect = true;
  32.                 }
  33.             } while (isIncorrect);
  34.             scan.close();
  35.         }
  36.  
  37.         System.out.println("Вывод на экран: ");
  38.         for (i = 1; i <= n; ++i){
  39.             if (i % 2 ==1) {
  40.                 System.out.print(array[i] + ", ");
  41.             }
  42.             else {
  43.                 System.out.println("-" + array[i] + ", ");
  44.             }
  45.         }
  46.     }
  47. }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement