-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuzdevums3.php
More file actions
140 lines (139 loc) · 2.6 KB
/
uzdevums3.php
File metadata and controls
140 lines (139 loc) · 2.6 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
//
//abstract class Shape
//{
// public abstract function getArea():float;
//
// public function getName(): string
// {
// return get_class($this);
// }
//}
//
//class ShapeCollection {
// private array $shapes = [];
//
// public function add(Shape $shape): void
// {
// $this->shapes[] = $shape;
// }
//
// public function all():array
// {
// return $this->shapes;
// }
//}
//
//class Triangle extends Shape
//{
// private float $base;
// private float $height;
//
// public function __construct($base, $height)
// {
// $this->height = $height;
// $this->base = $base;
// }
//
// public function getArea(): float
// {
// return $this->base*$this->height*0.5;
// }
//}
//
//class Square extends Shape
//{
// private float $length;
//
// public function __construct($length)
// {
// $this->length = $length;
// }
//
// public function getArea(): float
// {
// return $this->length**2;
// }
//}
//
//class Circle extends Shape
//{
// private float $radius;
//
// public function __construct($radius)
// {
// $this->radius = $radius;
// }
//
// public function getArea(): float
// {
// return $this->radius**2*pi();
// }
//}
//
//$shapes = new ShapeCollection();
//
//$shapes->add(new Triangle(2,3));
//$shapes->add(new Circle(20));
//$shapes->add(new Square(5));
////$shapes->add('123');
//
//foreach ($shapes->all() as $shape) {
// echo $shape->getName() . ' Area: ' . $shape->getArea();
// echo PHP_EOL;
//}`
//abstract class Fruit {
// public function getName(): string
// {
// return get_class($this);
// }
//
// public abstract function getColor(): string;
//}
//
//class FruitCollection {
// private array $fruits = [];
//
// public function add(Fruit $fruit): void
// {
// $this->fruits[] = $fruit;
// }
//
// public function all():array
// {
// return $this->fruits;
// }
//}
//
//class Orange extends Fruit {
// public function getColor(): string
// {
// return 'Orange';
// }
//}
//
//class Strawberry extends Fruit {
// public function getColor(): string
// {
// return 'Red';
// }
//}
//
//class Apple extends Fruit {
// public function getColor(): string
// {
// return 'Green';
// }
//}
//
//$fruits = new FruitCollection();
//
//$fruits->add(new Orange());
//$fruits->add(new Apple());
//$fruits->add(new Strawberry());
//
//foreach ($fruits->all() as $fruit) {
// echo $fruit->getName() . ' is of the color: ' . $fruit->getColor();
// echo PHP_EOL;
//}
\