/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-15-004/main.php
15 строк
299 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
class Point { public float $x; public float $y; public function __construct(float $x, float $y) { $this->x = $x; $this->y = $y; } public function distanceToOrigin(): float { return sqrt($this->x ** 2 + $this->y ** 2); } } $p = new Point(3.0, 4.0);