fork(3) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string[] mas = { "aaaaa", "aa", "b", "ab", "abc", "a", "abcde" };
  9. Console.WriteLine(string.Join(", ", mas.Where(x => x.Length > 3).ToArray()));
  10. }
  11. }
Success #stdin #stdout 0.03s 34912KB
stdin
Standard input is empty
stdout
aaaaa, abcde