✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Analizați codul, aflați valoarea expresiei și selectați răspunsul corect
<?php
$a = 3;$b = 4;$c = 5;
if ($a*$a==$b+$c) { echo "Numerele sunt pitagorice"; }
elseif ($b*$b==$a+$c) { echo "Numerele sunt pitagorice"; }
elseif ($c*$c==$a+$c) { echo "Numerele sunt pitagorice"; }
else { echo " $a,$b,$c nu sunt numere pitagorice";}
?>