Quote:
Originally Posted by zy677777
i dont understand what you want you can explain more?
|
Oh sorry that my bad English. Ok I can explain that they need to fill in the missing code marked in the classes so that the program will fulfill requirements listed below.
Build an OO C# console program to calculate the cost of client orders
Input stage:
1/ the client's details e.g client ID, name, phone number and unformatted delivery address
2/ the number of widgets they want e.g positive integer
3/ the type of widgets they want e.g 200,400 and 800
Example data input: firstName, lastName, clientId, phoneNum, numWidgets, typeOfWidgets
Process stage:
Please calculate the total cost of the order including a breakdown of:
- Nett Cost of Good (NB: excludes GST and courier fee)
- Courier and handling fee e.g 5% of the Nett Cost of Goods
- GST (15% of Cost of Goods e.g Nett Cost of Goods + GST)
- Grand total Cost of the Order
Output stage:
The total cost of the order including the details of the order.
Example data output: breakdown of cost incluing number and type of widgets as well as the formatted address of the client.
Special notes:
-Please allow for the repetion of data entry via a loop of your choose e.g While Loop;
- Add range checking to the inputNewWidgets() method as you think appropriate.
bump....