fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. bool a = true;
  8. bool b = true;
  9. bool c = false;
  10.  
  11. Console.WriteLine(a || b && c);
  12. Console.WriteLine((a || b) && c);
  13. Console.WriteLine(a || (b && c));
  14. }
  15. }
Success #stdin #stdout 0.03s 34752KB
stdin
Standard input is empty
stdout
True
False
True