Create a class named Meal that includes a string variable for the meal’s description (for example, "Dinner"), an array of strings that holds up to five of the Meal’s components (for example, "roasted chicken", "mashed potatoes", and "green beans"), and a numeric variable that holds the calorie count. Include a constructor that prompts the user for a value for each field. Also create two overloaded methods named display(). The first method takes no parameters and displays the Meal details. The second takes a numeric parameter that indicates how many of the Meal’s components to display, or an error message if the parameter value is less than 0 or more than 5.
Create an application that declares two Meal objects, sets their values, and demonstrates how both method versions can be called. (11.1)