fork download
  1. using System;
  2.  
  3. namespace ConsoleApplication6
  4. {
  5. internal class Program
  6. {
  7. private static int Main()
  8. {
  9. int iters = 100;
  10. double a = 0;
  11. for (int q = 0; q < iters; q++)
  12. for (int i = 1; i < 10000000; i++)
  13. if (i%2 == 0) a *=i; else a /=i;
  14. Console.WriteLine(a);
  15. return 0;
  16. }
  17. }
  18. }
Success #stdin #stdout 10.6s 33856KB
stdin
Standard input is empty
stdout
0