This program extends the earlier \"Online shopping cart\" program. (solution fro
ID: 3736471 • Letter: T
Question
This program extends the earlier "Online shopping cart" program. (solution from previous lab assignment is provided in Canvas).
(1) Extend the ItemToPurchase class per the following specifications:
Parameterized constructor to assign item name, item description, item price, and item quantity (default values of 0). (1 pt)
Public member functions
SetDescription() mutator & GetDescription() accessor (2 pts)
PrintItemCost() - Outputs the item name followed by the quantity, price, and subtotal
PrintItemDescription() - Outputs the item name and description
Private data members
string itemDescription - Initialized in default constructor to "none"
Ex. of PrintItemCost() output:
Ex. of PrintItemDescription() output:
(2) Create three new files:
ShoppingCart.h - Class declaration
ShoppingCart.cpp - Class definition
main.cpp - main() function (Note: main()'s functionality differs from the warm up)
Build the ShoppingCart class with the following specifications. Note: Some can be function stubs (empty functions) initially, to be completed in later steps.
Default constructor
Parameterized constructor which takes the customer name and date as parameters (1 pt)
Private data members
string customerName - Initialized in default constructor to "none"
string currentDate - Initialized in default constructor to "January 1, 2016"
vector < ItemToPurchase > cartItems
Public member functions
GetCustomerName() accessor (1 pt)
GetDate() accessor (1 pt)
AddItem()
Adds an item to cartItems vector. Has parameter ItemToPurchase. Does not return anything.
RemoveItem()
Removes item from cartItems vector. Has a string (an item's name) parameter. Does not return anything.
If item name cannot be found, output this message: Item not found in cart. Nothing removed.
ModifyItem()
Modifies an item's description, price, and/or quantity. Has parameter ItemToPurchase. Does not return anything.
If item can be found (by name) in cart, check if parameter has default values for description, price, and quantity. If not, modify item in cart.
If item cannot be found (by name) in cart, output this message: Item not found in cart. Nothing modified.
GetNumItemsInCart() (2 pts)
Returns quantity of all items in cart. Has no parameters.
GetCostOfCart() (2 pts)
Determines and returns the total cost of items in cart. Has no parameters.
PrintTotal()
Outputs total of objects in cart.
If cart is empty, output this message: SHOPPING CART IS EMPTY
PrintDescriptions()
Outputs each item's description.
Ex. of PrintTotal() output:
Ex. of PrintDescriptions() output:
(3) In main(), prompt the user for a customer's name and today's date. Output the name and date. Create an object of type ShoppingCart. (1 pt)
Ex.
(4) Implement the PrintMenu() function. PrintMenu() has a ShoppingCart parameter, and outputs a menu of options to manipulate the shopping cart. Each option is represented by a single character. Build and output the menu within the function.
If the an invalid character is entered, continue to prompt for a valid choice. Hint: Implement Quit before implementing other options. Call PrintMenu() in the main() function. Continue to execute the menu until the user enters q to Quit. (3 pts)
Ex:
(5) Implement Output shopping cart menu option. (3 pts)
Ex:
(6) Implement Output item's description menu option. (2 pts)
Ex.
(7) Implement Add item to cart menu option. (3 pts)
Ex:
(8) Implement remove item menu option. (4 pts)
Ex:
(9) Implement Change item quantity menu option. Hint: Make new ItemToPurchase object and use ItemToPurchase modifiers before using ModifyItem() function. (5 pts)
Ex:
it has to be in 5 files looks like that
please do it asap
ShoppingCart·h ShoppingCart.h main.cpp Itern ToPurchase.cpp ItemToPurchase.lh ShoppingCart.cppExplanation / Answer
#include <iostream>
#include <string>
#include "ItemToPurchase.h"
#include "ShoppingCart.h"
using namespace std;
char PrintMenu()
{
char answer;
cout <<"MENU" << endl;
cout << "a - Add item to cart" << endl;
cout << "d - Remove item from cart" << endl;
cout << "c - Change item quantity" << endl;
cout << "i - Output items' descriptions" << endl;
cout << "o - Output shopping cart" << endl;
cout <<"q - Quit" << endl << endl;
while(true)
{
cout << "Choose an option: " << endl;
cin >> answer;
if (answer == 'a' || answer == 'A')
break;
if (answer == 'd' || answer == 'D')
break;
if (answer == 'c' || answer == 'C')
break;
if (answer == 'i' || answer == 'I')
break;
if (answer == 'o' || answer == 'O')
break;
if (answer == 'q' || answer == 'Q')
break;
}
return answer;
}
void AddItem ()
{
string itemName = "";
string itemDescription;
int itemQuantity;
int itemPrice;
cout << "ADD ITEM TO CART" << endl;
cout << "Enter the item name: " << endl;
// Dad: you need to flush the newline char using cin.ignore()
cin.ignore();
getline (cin, itemName);
cout << "Enter the item description: " << endl;
// Dad: you need to flush the newline char using cin.ignore()
cin.ignore();
getline(cin, itemDescription);
cout << "Enter the item price: " << endl;
cin >> itemPrice;
cout << endl << "Enter the item quantity: " << endl;
cin >> itemQuantity;
// Dad: Changed object name (it's bad ')
ItemToPurchase itemToAdd(itemName, itemDescription, itemPrice, itemQuantity);
//itemCart.AddItem(itemToAdd);
}
int main()
{
string itemToRemove;
string customerName;
string currentDate;
cout << "Enter Customer's Name: " << endl;
getline(cin, customerName);
cout << "Enter Today's Date: " << endl;
getline(cin, currentDate);
cout << "Customer Name: " << customerName << endl;
cout << "Today's Date: " << currentDate << endl << endl;
ShoppingCart itemCart(customerName, currentDate);
char answer = PrintMenu();
while (answer != 'q')
{
if (answer == 'o' || answer == 'O')
{
cout <<"OUTPUT SHOPPING CART" << endl;
itemCart.PrintTotal();
}
if (answer == 'a' || answer == 'A')
{
AddItem();
}
if (answer == 'i' || answer == 'I'){
cout << "OUTPUT ITEMS' DESCRIPTIONS" << endl;
itemCart.PrintDescriptions();
}
if (answer == 'd' || answer == 'D')
{
cout << "REMOVE ITEM FROM CART" << endl << "Enter name of item to remove: ";
getline(cin, itemToRemove);
//itemCart.RemoveItem(itemToRemove);
}
if (answer == 'c' || answer == 'C')
break;
if (answer == 'q' || answer == 'Q')
break;
answer = PrintMenu();
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.