fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int i = 0;
  8. String Text = "Sample string";
  9. int j = 5;
  10. if (i * j > 5)
  11. i = 1;
  12. else if (Text.Length <= 3)
  13. i = 2;
  14. else
  15. i = 4;
  16. Console.Write(i);
  17. }
  18. }
Success #stdin #stdout 0.04s 23936KB
stdin
Standard input is empty
stdout
4