#include #include using namespace std; int main() { cout << "Which file(s) to open?\n"; cout << "1. friendlyships.shp" << endl; cout << "2. enemyships.shp" << endl; cout << "3. Both files" << endl; int option; cin >> option; /* Load files here */ cout << "1. Print all ships" << endl; cout << "2. Starship with the strongest weapon" << endl; cout << "3. Strongest starship overall" << endl; cout << "4. Weakest ship (ignoring unarmed)" << endl; cout << "5. Unarmed ships" << endl; cin >> option; /* Read files and response to input */ return 0; }