// Lab 11
// Define the function createRandomString() to create 
// a random 4-letter word (all caps, and not necessarily 
// English) and check to see if it's in the fourLetterWords.txt
// file.  Do this 10000 times to compute the empirical probability
// that a random four-letter word is an English word.
// Compare this with the theoretical probability = #words/(26^4)

#include <iostream>
#include <string>
#include <fstream>
#include <ctime>
#include <cstdlib>
using namespace std;

void createRandomString(string s)
{
	// insert code here
}

int main()
{
	string word;
	ifstream readfile("fourLetterWords.txt");
	// insert code here
	/*while(readfile >> word)
		cout << word << " ";*/
}