Hello I'm running into some issues with my grocery store program. The class GroceryItem is supposed to define private values to hold information about the GroceryItem object. Currently, When I call the dataEntry function, the program displays the functions, but does not allow for input for the current function before showing the next one. I could really just use some pointers about how to correctly use classes to get and set values. I believe I am on the right track but I just need some more instruction.
> while (!(stock >= 1000 || stock <= 9999))
tell me one number that satisfies that condition.
You initialized `stock' with 0, that's less than 9999, so the condition fails.