Advertisement
Sauka1337

Untitled

Sep 25th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.50 KB | None | 0 0
  1. import java.util.Arrays;
  2. import java.util.Scanner;
  3.  
  4. public class var_27_task_4 {
  5.  
  6.     public static void main(String[] args){
  7.  
  8.         Scanner scanner = new Scanner(System.in);
  9.  
  10.         boolean isIncorrect;      
  11.         int n = 0;
  12.  
  13.         do {
  14.             System.out.print("Enter n (size of arrays A and B) : ");
  15.             isIncorrect = false;
  16.             try {
  17.                 n = Integer.parseInt(scanner.nextLine());
  18.             } catch (NumberFormatException exception) {
  19.                 isIncorrect = true;
  20.                
  21.                 System.err.println("Input Error. Check if the data is correct.");
  22.             }
  23.            
  24.            
  25.             if (!isIncorrect && (n <= 0)) {
  26.                 isIncorrect = true;
  27.                
  28.                 System.err.println("Input Error. Check if the data is correct.");
  29.             }
  30.         } while (isIncorrect);
  31.  
  32.         int a[] = new int[n];
  33.         Arrays.fill(a, 0);
  34.  
  35.         int b[] = new int[n];
  36.         Arrays.fill(b, 0);
  37.  
  38.         for (int i = 0; i < n; i++) {
  39.             do {
  40.                
  41.                 System.out.print("Enter an integer A[" + (i+1) + "] ");
  42.                 isIncorrect = false;
  43.                 try {
  44.                     a[i] = Integer.parseInt(scanner.nextLine());
  45.                 } catch (NumberFormatException exception) {
  46.                     isIncorrect = true;
  47.                    
  48.                     System.err.println("Input Error. Check if the data is correct.");
  49.                 }
  50.             } while (isIncorrect);
  51.         }
  52.  
  53.         for (int i = 0; i < n; i++) {
  54.             do {
  55.                 System.out.print("Enter an integer B[" + (i+1) + "] ");
  56.                 isIncorrect = false;
  57.                 try {
  58.                     b[i] = Integer.parseInt(scanner.nextLine());
  59.                 } catch (NumberFormatException exception) {
  60.                     isIncorrect = true;
  61.                    
  62.                     System.err.println("Input Error. Check if the data is correct.");
  63.                 }
  64.             } while (isIncorrect);
  65.         }
  66.  
  67.         scanner.close();
  68.  
  69.         for (int i = 0; i < n; ++i) {
  70.             int temp = a[i];
  71.             a[i] = b[i];
  72.             b[i] = -temp;
  73.         }
  74.        
  75.         System.out.print("New arrays A and B: \n");
  76.         for (int i = 0; i < n; ++i) {
  77.             System.out.print("A[" + (i+1) + "] = " + a[i] + ", ");
  78.             System.out.print("B[" + (i+1) + "] = " + b[i] + "\n");
  79.         }
  80.  
  81.     }    
  82.  
  83. }
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement