Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2020
1,064
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace CommonElements
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string input1 = Console.ReadLine();
  11.             string input2 = Console.ReadLine();
  12.  
  13.             string[] arr1 = input1.Split();
  14.             string[] arr2 = input2.Split();
  15.            
  16.  
  17.             for (int i = 0; i < arr2.Length; i++)
  18.             {
  19.                 for (int j = 0; j < arr1.Length; j++)
  20.                 {
  21.                     if (arr2[i] == arr1[j])
  22.                     {
  23.                         Console.Write(arr2[i] + " ");
  24.                     }
  25.                        
  26.                            
  27.                 }
  28.             }
  29.  
  30.             Console.WriteLine();
  31.         }
  32.     }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement