<html>
<p>
<?php
// Try rounding a floating point number to an integer
// and print it to the screen
print round(M_PI);
?>
</p>
<p>
<?php
// Try rounding a floating point number to 3 decimal places
// and print it to the screen
print round(M_PI,3);
?>
</p>
</html>
No comments:
Post a Comment