Monty Hall problem: Difference between revisions

Content added Content deleted
Line 681: Line 681:
#include <time.h>
#include <time.h>
#include <math.h>
#include <math.h>
#define NumSim 1000000000 // one billion of simulations! using the Law of large numbers concept [[https://en.wikipedia.org/wiki/Law_of_large_numbers large numbers]]
#define NumSim 10000000


void main() {
void main() {
Line 709: Line 709:
Output of one run:
Output of one run:


<pre> After 10000000 games, I won 3330728 by staying.That is 33.307277%. And I won by switching 6669272 That is 66.692723% </pre>
<pre> After 1000000000 games, I won 333329011 by staying. That is 33.332902%. and I won by switching 666670989 That is 66.667098% </pre>


=={{header|C sharp|C#}}==
=={{header|C sharp|C#}}==