Java程序  |  8行  |  84 B

package coffee;

interface Heater {
  void on();
  void off();
  boolean isHot();
}