Software Engineering Project Assignment 3:
Programming

Again for this assignment I play two roles; client and instructor. As the client I need the working project, and as instructor I need reassurance that you are properly designing your program.

For the client you should submit a working program.  Meaning I can plan trips with it, see my route on the map and given the total distance.   You should  generate several maps files that specify a map.  The format of the file will be a series of lines each line containing a city  description followed by hiway discriptiong

[city] [longitude_location] [latitude_location]
[another_city] [longitude_location] [latitude_location]
...
[yet_another_city][longitude_location] [latitude_location]
END
[hiway] [city][another_city][distance]
[another_hiway] [yet_another_city][again_another_city] [distance]
...
[yet_another_hiway_hiway][city][another_city][distance]
END

where:

The files should have extensons .map

If I have made comments to your previous assignments you should incorporate them into this assignment, otherwise I will be disappointed and you know what that means.

Assignment:
Submit by the due date a working program with at least one file called TripPlanIntermediate.java with TripPlanIntermediate the only public class.