Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.ArrayList ;
- import java.util.Scanner;
- class example {
- Scanner scanner = new Scanner(System.in);
- ArrayList<Integer> list_numbers = new ArrayList<Integer>();
- public void input() {
- int numbers = scanner.nextInt();
- list_numbers.add(numbers) ;
- }
- public example (int numbers){
- list_numbers = new ArrayList<Integer> () ;
- list_numbers.add(numbers);}
- public example() {} ;
- }
- class second_ex{
- Scanner scanner = new Scanner (System.in) ;
- int second_num ;
- ArrayList<Integer> list_numbers = new ArrayList<Integer>() ;
- public second_ex(int x) {
- this.second_num = x ; }
- public second_ex() { } ;
- public void input() {
- int numbers = scanner.nextInt() ;
- list_numbers.add(numbers) ;
- }
- }
- public class Main
- {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in) ;
- example ex = new example() ;
- second_ex sec = new second_ex() ;
- for(int i = 0 ;i < 2; i++) {
- ex.input() ;
- }
- System.out.println("New one\n");
- int i = 1 ;
- boolean execute = true ;
- while (execute) {
- if (i >= 2) {execute = false ; }
- sec.input() ;
- i++ ;
- }
- for (int num : ex.list_numbers) {
- if(sec.list_numbers.contains(num)){
- System.out.println("First occured similarities");
- return ;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement