fork(2) download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Practice_6
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. int value = Int32.MaxValue;
  13. value++;
  14. //Approach 1 to make a decision
  15. if (value > Int32.MaxValue) {
  16. Console.WriteLine("true");
  17. } else {
  18. Console.WriteLine("false");
  19. }
  20. }
  21. }
  22. }
Success #stdin #stdout 0.02s 33760KB
stdin
Standard input is empty
stdout
false