Plus petite valeur superieure ou égale à un nombre

Author:


Download

<html>
<head>
<title> Fonction Mathématique</title>
</head>
<body>
<?php
    $nombre = ceil(6); // 6
    echo $nombre."<br/>"; // 7
    $nombre = ceil(6.2);
    echo $nombre."<br/>";
    $nombre = ceil(6.9); //7
    echo $nombre."<br/>";
?>
</body>
</html>

Leave a Reply

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


seven − = 2