Page 433 - Introduction to Programming with Java: A Problem Solving Approach
P. 433

                10.9 Two-DimensionalArrays 399
 /*********************************************************************
*
FlightTimesDriver.java
Dean & Dean
This manages a table of intercity flight times.
*********************************************************************/
*
*
*
public class FlightTimesDriver
{
}
// end class FlightTimesDriver
public static void main(String[] args)
{
}
ft.displayFlAipghatTgimoesTaPblDe(F); Enhancer System.out.println();
ft.promptForFlightTime();
// end main
int[][] flightTimes =
{
};
{0, 22, 30, 42, 55},
{23, 0, 14, 25, 37},
{31, 9, 0, 11, 28},
{44, 27, 12, 0, 12},
{59, 41, 30, 14, 0}
String[] cities = {"Wch", "Top", "KC", "Col", "StL"};
FlightTimes ft = new FlightTimes(flightTimes, cities);
System.out.println("\nFlight times for KansMo Airlines:\n");
Sample session:
 Flight times for
KansMo Airlines:
1
2
3
4
5
Wch
Wch 0
Top 23
KC 31
Col 44
StL 59
= Wch
= Top
= KC
= Col
= StL
Top
22
0
KC
Col
StL
Enter departure city's
number: 5
9
27
0
12
11
28
41
30
0
Enter destination city's number: 1
Flight time = 59 minutes.
30
42
55
14
25
37
0
14
12
Figure 10.18 Driver of FlightTimes class in Figures 10.19a and 10.19b




















   431   432   433   434   435