|
need someone to write me a programme
I need someone to write this on visual studio C# and email me the files. thanks for any help in advance.
PROBLEM
A leisure club requires a menu driven computer system that allows the user enter a customer’s status (member or non-member) and age and prints the price to attend the club to the screen. The user shall be able to repeat the operation as often as they like.
The following points must be considered when computing a quotation:
The basic quotation is determined from the following:
For a member of age >= 18 and <= 30 the price is €7.50. A member aged >= 31 pays €3.50.
A non-member of age >= 18 and <= 35 pays €10. A non-member aged >= 36 pay €5.50.
Any other ages or status should be signaled as an error by returning a price of 0.
Sample Dialogue:
Pricing Menu
1. Member
2. Non-member
3. Exit
Enter Choice: 1
Enter Age: 25
Price: €7.50
|