НА
Size: a a a
НА
AS
AS
AS
AS
AS
AS
AS
AS
AS
AS
I
K
AS
<?php
$studentsCount = rand(0, 1000);
function student($i, $titles)
{
if (($i % 100 > 4 && $i % 100 < 20)) {
return $titles[2];
}
$caseIndex = min($i % 10, 5);
$case = [2, 0, 1, 1, 1, 2];
$titlesIndex = $case[$caseIndex];
return $titles[$titlesIndex];
}
echo $studentsCount . student($studentsCount, [' студент', ' студента', ' студентов']);
CK
SK
CK
V
V
CK