1.13. A large city has major roads laid out in a grid pattern, as indicated in...
The Acme Trucking company has
hired you to write software to help dispatch its trucks. One
important element of this software is knowing the distance between
any two cities that it services. Design and implement a Distance
class that stores the distances between cities in a two-dimensional
array. This class contains the following required data members and
methods: Required Data Members: String[] cities; //it is used to
store city names int[][] distance; // this 2-D array repreents
distance between two...