C++ #main.cpp #include using namespace std; #include "ItemToPurchase.h" int main() { /* Type your code here */ return 0; } #ItemToPurchase.cpp #include using namespace std; #include "ItemToPurchase.h" /* Type your code here */ #ItemToPurchase.h #ifndef ITEM_TO_PURCHASE_H #define ITEM_TO_PURCHASE_H #include using namespace std; /* Type your code here */ #endif

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter3: Input/output
Section: Chapter Questions
Problem 12SA: 12. What is the output of the following program? (2, 3, 6, 8) #include <iostream> #include...
icon
Related questions
Question
100%

C++

#main.cpp

#include <iostream>
using namespace std;

#include "ItemToPurchase.h"

int main() {

/* Type your code here */

return 0;
}

#ItemToPurchase.cpp

#include <iostream>
using namespace std;

#include "ItemToPurchase.h"

/* Type your code here */

#ItemToPurchase.h

#ifndef ITEM_TO_PURCHASE_H
#define ITEM_TO_PURCHASE_H

#include <string>
using namespace std;

/* Type your code here */

#endif

 

10.27 LAB*: Program: Online shopping cart (Part 1)
(1) Create three files to submit:
• ItemToPurchase.h - Class declaration
• ItemToPurchase.cpp - Class definition
• main.cpp - main() function
Build the ItemToPurchase class with the following specifications:
• Default constructor
Public class functions (mutators & accessors)
o SetName() & GetName()
o SetPrice() & GetPrice()
o SetQuantity() & GetQuantity()
• Private data members
o string itemName - Initialized in default constructor to "none"
o int itemPrice - Initialized in default constructor to 0
o int itemQuantity - Initialized in default constructor to 0
(2) In main(), prompt the user for two items and create two objects of the Item ToPurchase class. Before prompting for the second item, call
cin.ignore() to allow the user to input a new string.
Ex:
Item 1
Enter the item name:
Chocolate Chips
Enter the item price:
3
Enter the item quantity:
1
Item 2
Enter the item name:
Bottled Water
Enter the item price:
1
Enter the item quantity:
10
(3) Add the costs of the two items together and output the total cost.
Ex:
TOTAL COST
Chocolate Chips 1 @ $3 = $3
Bottled Water 10 @ $1 = $10
Total: $13
Transcribed Image Text:10.27 LAB*: Program: Online shopping cart (Part 1) (1) Create three files to submit: • ItemToPurchase.h - Class declaration • ItemToPurchase.cpp - Class definition • main.cpp - main() function Build the ItemToPurchase class with the following specifications: • Default constructor Public class functions (mutators & accessors) o SetName() & GetName() o SetPrice() & GetPrice() o SetQuantity() & GetQuantity() • Private data members o string itemName - Initialized in default constructor to "none" o int itemPrice - Initialized in default constructor to 0 o int itemQuantity - Initialized in default constructor to 0 (2) In main(), prompt the user for two items and create two objects of the Item ToPurchase class. Before prompting for the second item, call cin.ignore() to allow the user to input a new string. Ex: Item 1 Enter the item name: Chocolate Chips Enter the item price: 3 Enter the item quantity: 1 Item 2 Enter the item name: Bottled Water Enter the item price: 1 Enter the item quantity: 10 (3) Add the costs of the two items together and output the total cost. Ex: TOTAL COST Chocolate Chips 1 @ $3 = $3 Bottled Water 10 @ $1 = $10 Total: $13
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Knowledge Booster
Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning