#include #include using namespace std; int main() { int menuChoice = 0; int numBooks = 0; int numMovies = 0; double numPdsPeanuts = 0.0; cout << "1 books" << endl; cout << "2 movies" << endl; cout << "3 peanuts" << endl; cout << "Enter your choice: "; cin >> menuChoice; if (menuChoice == 1) { cout << "You owe $9 for 1 book" << endl; } else if (menuChoice == 2) { cout << "You owe $14.99 for 1 movie" << endl; } else if (menuChoice == 3) { cout << "You owe $1.30 for 1 lb of peanuts" << endl; } else { cout << "Contact the programmer at 1-800-who-cares" << endl; } return 0; }// end of main