Advertisement
anushervon111

Untitled

Apr 6th, 2023
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.48 KB | Source Code | 0 0
  1. import java.util.ArrayList ;
  2. import java.util.Scanner;
  3. class example {
  4.         Scanner scanner = new Scanner(System.in);
  5.        
  6.     ArrayList<Integer> list_numbers = new ArrayList<Integer>();
  7.     public void input() {
  8.         int numbers = scanner.nextInt();
  9.         list_numbers.add(numbers) ;
  10.        
  11.     }
  12.     public example (int numbers){
  13.         list_numbers = new ArrayList<Integer> () ;
  14.         list_numbers.add(numbers);}
  15.         public example() {} ;
  16.          
  17. }
  18. class second_ex{
  19.  Scanner scanner = new Scanner (System.in) ;
  20.     int second_num ;
  21.     ArrayList<Integer> list_numbers = new ArrayList<Integer>() ;
  22.     public second_ex(int x) {
  23.         this.second_num = x ; }
  24.         public second_ex() { } ;
  25.     public void input() {
  26.      int numbers = scanner.nextInt() ;
  27.      list_numbers.add(numbers) ;
  28.     }
  29. }
  30. public class Main
  31. {
  32.     public static void main(String[] args) {
  33.         Scanner scanner = new Scanner(System.in) ;
  34.         example ex = new example() ;
  35.         second_ex sec = new second_ex() ;
  36.         for(int i = 0 ;i < 2; i++) {
  37.             ex.input() ;
  38.         }
  39.         System.out.println("New one\n");
  40.         int i = 1 ;
  41.         boolean execute = true ;
  42.         while (execute)  {
  43.             if (i >= 2) {execute = false ; }
  44.             sec.input() ;
  45.             i++ ;
  46.            
  47.         }
  48.         for (int num : ex.list_numbers) {
  49.             if(sec.list_numbers.contains(num)){
  50.                 System.out.println("First occured similarities");
  51.                 return ;
  52.             }
  53.         }
  54.        
  55.     }
  56. }
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement