-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDog.java
95 lines (75 loc) · 1.84 KB
/
Dog.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package ZooManagementSystem;
public class Dog {
private String name;
private int age;
private double weight;
private final double MeatCalcMale=0.05;
private final double MeatCalcFemale=0.03;
private DogType Type;
private Gender gender;
private int happiness;
private static int LifeSpan = 14;
private final String DogNoise="BARK";
public Dog(String name, int age ,double weight, DogType Type ,Gender gender){
this.name = name;
this.age = age;
this.weight=weight;
this.Type=Type;
this.gender=gender;
this.happiness=100;
}
public int getHappiness() {
return happiness;
}
public void setHappiness(int happiness) {
this.happiness = happiness;
}
public int HowMuchDogEat(){
double meat = (int)(getWeight()*getAge());
if(getGender() == Gender.Male) {
meat*=MeatCalcMale;
return (int)meat;
}
else {
meat*=MeatCalcFemale;
return (int)meat;
}
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public int getAge(){
return age;
}
public void setAge(int age) {
this.age = age;
}
public DogType getType() {
return Type;
}
public void setType(DogType type) {
Type = type;
}
public String makeNoise(){
return DogNoise;
}
public double getWeight() {
return weight;
}
public void setWeight(int weight) {
this.weight = weight;
}
public boolean ageOneYear(){
this.age+=1;
return this.age <= LifeSpan;
}
public Gender getGender() {
return gender;
}
public void setGender(Gender gender) {
this.gender = gender;
}
}