Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Can this be put in C# program please. Please be as through and simple as possible. Thank you. Create a GUI program named Delivery Charges
Can this be put in C# program please. Please be as through and simple as possible. Thank you.
Create a GUI program named Delivery Charges that is used by a package delivery service to check delivery areas. The program should contain an array that holds 10 zip codes of areas to which the company makes deliveries. 76801 | 76844 79600 79601 | 79602 79603 | 79604 79605 79606 79607 The program should prompt the user to enter a zip code they want to ship to. Display a message indicating whether the zip code is in the company's delivery area or not. Modify the program to calculate a delivery charge based on the zip code and weight of the package. The program should prompt the user to enter the weight of the package and calculate the charge The program should contain a two dimensional parallel array that holds varying prices for each zip code based on package weight of less than 2 pounds, 2 to 10 pounds, and over 10 pounds. 10 20.50 21.50 | 22.50 | 23.50 24.50 25.50 26.50 27.50 | 28.50 29.50 Provided the zip code is within the delivery area, a message should read similar to: We can deliver the 50 pound package to zip code 76844 for a charge of $21.50. Create a GUI program named Delivery Charges that is used by a package delivery service to check delivery areas. The program should contain an array that holds 10 zip codes of areas to which the company makes deliveries. 76801 | 76844 79600 79601 | 79602 79603 | 79604 79605 79606 79607 The program should prompt the user to enter a zip code they want to ship to. Display a message indicating whether the zip code is in the company's delivery area or not. Modify the program to calculate a delivery charge based on the zip code and weight of the package. The program should prompt the user to enter the weight of the package and calculate the charge The program should contain a two dimensional parallel array that holds varying prices for each zip code based on package weight of less than 2 pounds, 2 to 10 pounds, and over 10 pounds. 10 20.50 21.50 | 22.50 | 23.50 24.50 25.50 26.50 27.50 | 28.50 29.50 Provided the zip code is within the delivery area, a message should read similar to: We can deliver the 50 pound package to zip code 76844 for a charge of $21.50Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started