Месяц: Апрель 2021
Контрольная работа
<?php class student{ public $name; public $lastname; public $bilet; public $group; public function __construct(string $name,string $lastname,string $group) { $this->name = $name; $this->lastname = $lastname; $this->group = $group; $this->bilet = rand(0,999);...