Advertisement
North_Point

Filter

Jul 26th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. {
  2.             var input = Console.ReadLine();
  3.  
  4.             foreach (var item in input)
  5.             {
  6.                 if (item >= 65 && item <= 90 || item >= 97 && item <= 122)
  7.                 {
  8.                     Console.Write(item);
  9.                 }
  10.             }
  11.             Console.WriteLine();
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement