fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int mark;
  8. mark = 88;
  9.  
  10. if (mark >= 90)
  11. Console.WriteLine("A");
  12. else if (mark >= 80)
  13. Console.WriteLine("B");
  14. else if (mark >= 70)
  15. Console.WriteLine("C");
  16. else if (mark >= 60)
  17. Console.WriteLine("D");
  18. else
  19. Console.WriteLine("F");
  20. }
  21. }
  22.  
Success #stdin #stdout 0.05s 28448KB
stdin
Standard input is empty
stdout
B