fork(5) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string binaryString = "110011100110011011001110011001101100111001100110110011100110011011001110001001100110011011001110";
  8. int step = binaryString.Length / 8;
  9. for (int i = 0; i < step; i++)
  10. {
  11. Console.WriteLine(binaryString.Substring(i, 8));
  12. }
  13. }
  14. }
Success #stdin #stdout 0.02s 33816KB
stdin
Standard input is empty
stdout
11001110
10011100
00111001
01110011
11100110
11001100
10011001
00110011
01100110
11001101
10011011
00110110