fork(28) download
  1. using System;
  2.  
  3. namespace ProgramConsole
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string s = "688.63 C 1 C 0 0 0";
  10. var array = s.Split(new string[]{" "}, StringSplitOptions.RemoveEmptyEntries);
  11. Console.WriteLine(array[1]);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.05s 34760KB
stdin
Standard input is empty
stdout
C