fork(1) download
  1. using System;
  2. using System.Linq;
  3. using System.IO;
  4. using System.Collections.Generic;
  5.  
  6. public class Test
  7. {
  8. public static void Main()
  9. {
  10. var tr = new List<string>{"432","bf","ret","2","gery","ret","44","hg"};
  11. int j = 0;
  12. foreach(string z in tr)
  13. {
  14. if(j >= tr.Count)
  15. break;
  16. else
  17. {
  18. string woah = tr[0+j]+tr[1+j]+tr[2+j]+tr[3+j]+tr[4+j]+tr[5+j]+tr[6+j]+tr[7+j];
  19. j = j + 8;
  20. Console.WriteLine(woah);
  21. }
  22. }
  23. }
  24. }
Success #stdin #stdout 0.02s 14716KB
stdin
Standard input is empty
stdout
432bfret2geryret44hg