Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace _04.Split_ByWordCasing
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             List<string> input = Console.ReadLine().Split().ToList();
  14.  
  15.             List<string> lowerCase = new List<string>();
  16.             List<string> mixedCase = new List<string>();
  17.             List<string> upperCase = new List<string>();
  18.  
  19.             for (int i = 0; i < input.Count; i++)
  20.             {
  21.                 if (char.IsLower(input[i]))
  22.                 {
  23.                     lowerCase.Add(input[i]);
  24.                 }
  25.             }
  26.  
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement