Question: 4. Given the following Invoice struct: struct Invoice { int orderID; string custName; string prodName; int prodQuantity; double unitPrice; } Inv [10]; Write a

4. Given the following Invoice struct: struct Invoice { int orderID; string 

4. Given the following Invoice struct: struct Invoice { int orderID; string custName; string prodName; int prodQuantity; double unitPrice; } Inv [10]; Write a complete C++ program to do the following tasks: i) ii) iii) iv) Input 10 invoices (use void function inputData). Calculate the total payment for each invoice (use array). Every total payment is calculated using prodQuantity * unitPrice. (use void function totalPayment). Find the invoice that makes the highest payment. (use value returning function findHighest). Display the invoice information including its total payment (use void function displayInfo).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!