#include <iostream> #include <string> using namespace std; // global constants const int NORTH = 1; const int SOUTH = 2; const int EAST = 3; const int WEST = 4; // function declarations void display( int thing, string str );