Advertisement
Infiniti_Inter

second

Nov 2nd, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6.  
  7. namespace mainSolution
  8. {
  9.     static class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             char[] sign = { ' ', '.', ',', ';', ':', '?', '!', '-'};
  14.             string[] a = Console.ReadLine().Split(sign, StringSplitOptions.RemoveEmptyEntries);
  15.             for (int i = 0; i < a.Length; ++i)
  16.             {
  17.                 bool check = true;
  18.                 for (int j = 0; j < a.Length; ++j)
  19.                 {
  20.                     if (i == j)
  21.                         continue;
  22.                     if (a[i].ToLower() == a[j].ToLower())
  23.                     {
  24.                         check = false;
  25.                         break;
  26.                     }
  27.                 }
  28.                 if (check)
  29.                     Console.Write(a[i] + " ");
  30.             }
  31.         }
  32.  
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement