Exemple d’utilisation de ‘floor( )’

Author:


Download

<html>
<head>
<title> Fonction Mathématique</title>
</head>
<body>

<?php

	$resultat = floor(4.7);
	print($resultat."<br/>");

	$resultat = floor(-4.7);
	print($resultat);

?>

</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


4 − four =