1. Exercise
public class Cat {
private int weight;
public Cat() {
weight = 42;
}
public int getWeight() {
return weight;
}
public void setWeight(int newWeight) {
weight = newWeight;
}
}
public class Cat {
private int weight;
public Cat() {
weight = 42;
}
public int getWeight() {
return weight;
}
public void setWeight(int newWeight) {
weight = newWeight;
}
}
No comments:
Post a Comment