fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int val = 2;
  8.  
  9. switch (val)
  10. {
  11. case 1:
  12. Console.WriteLine("1");
  13. break;
  14.  
  15. case 2:
  16. Console.WriteLine("2");
  17. break;
  18.  
  19. case 3:
  20. Console.WriteLine("3");
  21. break;
  22. }
  23. }
  24. }
Success #stdin #stdout 0.03s 23856KB
stdin
Standard input is empty
stdout
2