In init main, constructor expect to have 5 parameters, but you only pass two, that is wrong.
Shouldn't it be something like this?
class Receipt {
private:
string storeName;
string itemName;
string secondItemName;
double price;
double secondItemPrice;
double...