Exercice PHP - Base
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exercice 7
Il faut écrire une fonction distance
qui prend les 4 paramètres suivants : $x1
, $x2
, $y1
et $y2
. Ces paramètres représentent les coordonnées de deux points du plan.
La fonction calculera et renverra la distance séparant ces deux points.
Formule :
Distance entre 2 points
1
2
3
4
5
6
7
<?php
function distance($x1,$y1,$x2,$y2) {
}
?>
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content