<?php class Rectangle { public function __construct( private float $largeur, private float $hauteur ) {} public function aire(): float { return $this->largeur * $this->hauteur; } } $r = new Rectangle(5, 3); echo "Aire : " . $r->aire();<?php class Rectangle { public function __construct( private float $largeur, private float $hauteur ) {} public function aire(): float { return $this->largeur * $this->hauteur; } } $r = new Rectangle(5, 3); echo "Aire : " . $r->aire();
You have javascript disabled. You will not be able to edit any code.