Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- namespace WordSynonyms
- {
- class Program
- {
- public static void Main()
- {
- List<string> words = Console.ReadLine()
- .Split(" ")
- .Where(x => x.Length % 2 == 0)
- .ToList();
- foreach (string word in words)
- {
- Console.WriteLine(word);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement