더 몬티 홀 문제. - 몬트호 문제.

1464 단어 HallMonty
//The Monty Hall Problem
#include <iostream>
#include <cstdlib>	// Needed for random numbers

using namespace std;

// ====================
//     main function
// ====================

int main()
{
  int i;
  int numWinsStay = 0;
  int numWinsSwitch = 0;
  int prizeDoor, choiceDoor, switchDoor, revealDoor;

  // Run simulation 10,000 times
  for (i=0; i<10000; i++)
  {
	prizeDoor = rand() % 3;		// Pick door with prize behind it
	choiceDoor = rand() % 3;	// Door of contestant's pick

	// Find a door to reveal that is not the prize and not the contestant's
	// choice
	// while choicedoor,switchdoor,revealdoor :0,1,2。
	//prizedoor 。
	revealDoor = 0;
	while ((revealDoor == prizeDoor) || (revealDoor == choiceDoor))
	{
		revealDoor++;
	}

	// Find a door if the contestant switches
	switchDoor = 0;
	while ((switchDoor == choiceDoor) || (switchDoor == revealDoor))
	{
		switchDoor++;
	}
	// See if we would have won and increment counters
	if (choiceDoor == prizeDoor)
	{
		numWinsStay++;
	}
	else if (switchDoor == prizeDoor)
	{
  		numWinsSwitch++;
	}
  }

  cout << "If you switch, you will win " << (numWinsSwitch / 100) << "%"
	<< " of the time. " << endl;
  cout << "If you stay, you will win " << (numWinsStay / 100) << "%"
	<< " of the time. " << endl;

  return 0;
}

The Monty Hall Problem

좋은 웹페이지 즐겨찾기