/*************************************************
* City.java
* Exercise 16
*************************************************/

public class City
{
  private String name;
  private double north; // north latitude in degrees
  private double west;  // west longitude in degrees

  //**************************************************************

  public City(String name, double latitude, double longitude)
  {
    this.name = name;
    this.north = latitude;
    this.west = longitude;
  } // end constructor

  //**************************************************************

  public void display()
  {
    System.out.printf("%12s%6.1f%6.1f\n", name, north, west);
  }
} // end class City