make a class, Heater that contains a single integer field, temperature.
make a class, Heater that contains a single integer field, temperature. Define a constructor that take no parameters. The temperature field should be set to the value 15 in constructor. Define the mutators(setter) warmer and cooler method, whose effect is to increase or decrease the value of the temperature by 5 respectively. Define an accessor […]
make a class, Heater that contains a single integer field, temperature. Read More »