That is the only think i have, but it's hard for me to call them in main
#include <iostream>
#include <string>
using namespace std;
class Receipt {
private:
string storeName;
double purchasedGoods {2};
double price[purchasedGoods];
public:
Receipt(string storeName...
Hello can someone help with this please
Write a receipt class.
Class to contain as data members
• The name of the store
• Array of prices of purchased goods, and member functions:
• Constructors
• get () and set () - for prices to work with individual elements of the array
• show () -...