Question
-Has to be able lose, gain, monitor weight
-Has to be able to do things that show he is jolly
-Has to keep a list of things that people want
-Has to be able to tell who is naughty or nice
-Has to produce a present given a person's name by checking whether they are naughty or nice and the list of things they want
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
import java.util.ArrayList;public class Santa {
private int weight;
private ArrayList<String> sayings;
private ArrayList<People> theList;
public Santa()
{
weight = 200;
sayings = new ArrayList<String>();
theList = new ArrayList<People>();
}
public void setList(ArrayList<People> list)
{
theList = list;
}
public void addSaying (String sayings) //Santa says
{
this.sayings.add(sayings);...