Roman4525

Geo Area look up

Oct 18th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. public class GeographicAreaLookup {
  2.  
  3.  
  4. //method for locating zipcode
  5.  
  6. public String determineAreaByZip (char zipCode){
  7. switch(zipCode){
  8. case '0': case '1': case '2': case '3':
  9.  
  10. return (zipCode + " is in the East Coast.");
  11.  
  12.  
  13. case '4': case '5': case '6':
  14.  
  15. return (zipCode + " is in the Central Plains.");
  16.  
  17.  
  18. case '7':
  19. return (zipCode + "is in the South.");
  20.  
  21.  
  22. case '8': case '9':
  23. return (zipCode + "is in the West.");
  24.  
  25. default:
  26. return (zipCode +"invalid zipcode.");
  27.  
  28. }
  29.  
  30.  
  31.  
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment