Ask Question
13 January, 22:58

Write the definition of a public class WeatherForecast that provides the following behavior (methods) : A method called setSkies that has one parameter, a String. A method called setHigh that has one parameter, an int. A method called setLow that has one parameter, an int. A method called getSkies that has no parameters and that returns the value that was last used as an argument in setSkies. A method called getHigh that has no parameters and that returns the value that was last used as an argument in setHigh. A method called getLow that has no parameters and that returns the value that was last used as an argument in setLow. No constructor need be defined. Be sure to define instance variables as needed by your "getter"/"setter" methods-initialize all numeric variables to 0 and any String variables to the empty string.

+3
Answers (1)
  1. 13 January, 23:20
    0
    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;

    }

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write the definition of a public class WeatherForecast that provides the following behavior (methods) : A method called setSkies that has ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers