#include #include #include "SizeT.h" #include "GameRules.h" using namespace std; int main() { SizeT one, two; int i; int sizeDifference; for(i = 0; i < 10; i++) { one = RandomSize(); two = RandomSize(); sizeDifference = SizeDifference(one,two); cout << "A " << SizeTToString(one) << " critter meets a " << SizeTToString(two) << " critter." << endl; cout << "\tThe difference in sizes is " << sizeDifference << "." << endl; cout << "\tSo the critters " << FindAction(sizeDifference) << "." << endl; if (one == SizeT::HUGE) { cout << "Creature one says " << HugeComment(two) << endl; } cout << endl; } return 0; }