Problem Scenario
FijiPizza clients may get an app from the company that allows them to order pizzas from any of their FijiPizza branches. The FijiPizza phone app will allow the company to keep track of the number of pizzas the client has ordered and the charges incurred by each client. The charges are as follows:
| Type of Service | Cost per pizza |
| Chicken Pizza | $20.50 |
| Vegetarian Pizza | $15.00 |
You are required to write a program that calculates and displays the Total Cost (for all pizzas ordered) for a client given the client’s usage of the company’s pizzas app:
Cost for Chicken Pizza = number of Chicken Pizzas x cost per Chicken pizza
Cost for Vegetarian Pizza = number of Vegetarian Pizzas x cost per Vegetarian pizza
Assignment Requirements
- Create an IPO chart along with a flowchart to express the logic of the program that will solve the above mentioned problem. You will not need to check for data entry errors or do any data validation. Assume the user will always enter correct values.
- Based on the logic expressed in your IPO Chart and flowchart, create a program using C++.





