//Skeleton of the class:
//representation of objects
//headers of the public methods

public class Thermometer {

  private int temperature;   //in degrees Celsius

  public Thermometer() { ... }

  public void measure(int t) { ... }

  public int celsius() { ... }

  public int fahrenheit() { ... }

  public String type() { ... }
}
