akosiraff

Download: Fast Freight Shipping VB 2010

Jan 30th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/fast-freight-shipping-vb-2010/
  3. The fast freight Shipping company charges the rates the rates in
  4. the following table.
  5. Weight of the package(in kg) Shipping rate per mile
  6. 2 kg or less $0.01
  7. over 2 kg, but not more than 6 kg $0.015
  8. over 6kg, but not more than 10 kg $0.02
  9. over 10 kg, but not more than 20 kg $0.025
  10. create an application that allows the user to enter the weight of
  11. the package and the distance it is to be shipped, and then
  12. displays the charges.
  13. Input validation: Do not accept values of 0 or less for the
  14. weight of the package. Do not accept weights of more than 20 kg
  15. (this is the maximum weight the company will ship). do not accept
  16. distances of less than 10 miles or more than 3000 miles. These
  17. are the company’s minimum and maximum shipping distances.
  18. suggestion :use or else operator to combine the two range
  19. conditions that check package weights that are too small or too
  20. large. use exception handling to check for nonnumeric data.
  21. Use the following test data to determine if the application is
  22. calculating properly.
  23. weight and distance shipping cost
  24. 1.5 kg , 100 miles $1.00
  25. 5 kg,200 miles $3.00
  26. 8 kg, 750 miles $15.00
  27.  
  28. Download: http://solutionzip.com/downloads/fast-freight-shipping-vb-2010/
Add Comment
Please, Sign In to add comment