//Khanh Dang //This is a game that the user has to find certain coordinates on a plane. //The points will represent Osama and his Taliban. #include #include using namespace std; void main () { int found[4]= {0};//elimination of correct possibilities. int x = 0, y = 0;//direction the user moves. int taliban = 0;//counts the Taliban found. int osama = 0;//counts if osama is found. char move; cout<<"Try to find Osama and the Taliban: 3 Taliban & Osama are out there.\n"; cout<<"They are Northeast, Northwest, Southeast, and Southwest from where you start.\n"; cout<<"From where you start, there is a 5 mile radius, and each direction you go\n"; cout<<"represents 1 mile.\n"; cout<>move; cout<<" ____________________________________________________________________\n"; //selection statement when user enters choice. switch (move) { case 'n': ++y; cout<