Answer:
public class WeatherForecast {
//Instance variables initialized to default values
private String skies = "";
private int high = 0;
private int low = 0;
//Getters and Setters
public void setSkies(String value) {
skies = value;
}
public void setHigh(int value) {
high = value;
}
public void setLow(int value) {
low = value;
}
public String getSkies() {
return skies;
}
public int getHigh() {
return high;
}
public int getLow() {
return low;
}
}