Advertisement
myloyo

8.3.15

Oct 13th, 2023 (edited)
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.87 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.Specialized;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace myloyorrr
  9. {
  10.     internal class Program
  11.     {
  12.         static bool f(string s)
  13.         {
  14.             bool h = true;
  15.             for (int i = 0, j = s.Length - 1; i < s.Length / 2; i++, j--)
  16.             {
  17.                 if (s[i] != s[j])
  18.                 {
  19.                     h = false;
  20.                     break;
  21.                 }
  22.             }
  23.             return h;
  24.         }
  25.         static void Main()
  26.         {
  27.             string[] a = Console.ReadLine().Split(' ', ',', '.', ':');
  28.             for (int i = 0; i < a.Length; i++)
  29.             {
  30.                 if (f(a[i]))
  31.                 {
  32.                     Console.Write(a[i] + ' ');
  33.                 }
  34.             }
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement