Apply C++ language to program a Find My Key game. The scenario of Find My Key game is that players have lost their key in a field full of holes, and they need to navigate the field to get the key without failing into the holes or stepping outside of the field. • The field consist of 8 rows by 8 columns • The field consists of grid containing the “holes” (O), the “key” (K), the “player’s character” (C). We will be using (X) to represent the rest of the field.
Question 1 Apply C++ language to program a Find My Key game. The scenario of Find My Key game is that players have lost…