part 1: You are required to write a system to maintain information of cases reported of Corona Virus in Pakistan. Consider the following requirements and implement the system. Save record of total reported cases (all Pakistan) total of each province total deaths total recovered Write required functions and data members. Your program should answer given requirements. Also write functions to add new patients or remove recovered or died patients from count whenever required. part2: Create a class for invoice item having attributes invoice id (it’ll be unique for every invoice item), item description (name of product and details), quantity (number of items), and price (sail price). There is behavior to set all values. There is a display method that will show invoice id, item description, quantity, price of single item and total amount of the invoice item. Create objects to show following details. ID Name Quantity Price Total Amount 1 Chips 50 mg small pack 12 10 120 2 Chocolate Biscuit small pack 15 5 75
part 1:
You are required to write a system to maintain information of cases reported of Corona Virus in Pakistan. Consider the following requirements and implement the system.
- Save record of total reported cases (all Pakistan)
- total of each province
- total deaths
- total recovered
Write required functions and data members. Your program should answer given requirements.
Also write functions to add new patients or remove recovered or died patients from count whenever required.
part2:
Create a class for invoice item having attributes invoice id (it’ll be unique for every invoice item), item description (name of product and details), quantity (number of items), and price (sail price). There is behavior to set all values. There is a display method that will show invoice id, item description, quantity, price of single item and total amount of the invoice item.
Create objects to show following details.
ID |
Name |
Quantity |
Price |
Total Amount |
1 |
Chips 50 mg small pack |
12 |
10 |
120 |
2 |
Chocolate Biscuit small pack |
15 |
5 |
75 |
Step by step
Solved in 2 steps with 2 images