-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimal.cs
70 lines (67 loc) · 1.99 KB
/
Animal.cs
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
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Zoo
{
class Animal
{
public string Name { get; private set; }
public string Diet { get; set; }
public string Gender { get; set; }
public int Age { get; }
public double Weight { get; set; }
public bool Poisonous { get; set; }
public int Temperature { get; set; }
public string NaturalHabitat { get; set; }
public string Medication { get; set; }
public string GetIll
{
get {
int tempNumber;
tempNumber = RandomNumber(0, 10);
if (tempNumber < 2)
{
return "Got ill";
}
else
{
return "Healthy";
}
}
}
public Animal(string newName, string newGender, bool newPoisonous, string newMedication, string newHaitat)
{
Name = newName;
Diet = "";
Gender = newGender;
Age = 0;
Weight = 0.50;
Poisonous = newPoisonous;
Temperature = 25;
NaturalHabitat = newHaitat;
Medication = newMedication;
}
public void Breathe()
{
Console.WriteLine("Successfully breathed");
}
public void Eat()
{
Console.WriteLine("Successfully eaten omnomnomnomomnomnomnomomnomnomnomomnomnomnomomnomnomnomomnomnomnomomnomnomnomomnomnomnom");
}
public void Excrete()
{
Console.WriteLine("Successfully pooped");
}
public void Sleep()
{
Console.WriteLine("zzzZZzzZZZzzZZZZzzzZZzzzzzZzzZZzZzzZZZzZZZzzZZzzzZZZzzZZzzZzzZZZzzzZZZzzzZZ");
}
public int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
}
}