Created
March 11, 2020 13:27
-
-
Save rizkiv1/8c1c39b24a671dc926b9777ae3b85b75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$angkaAcak = rand(1, 9999999) ; | |
echo "Angka Acak : $angkaAcak <br/>" ; | |
$akar = sqrt(100); | |
echo "Akar angka 100 : $akar <br/>" ; | |
$decimal = 123.6783; | |
echo "Nilai Decimal: $decimal <br/>" ; | |
$pembulatan = floor($decimal) ; | |
echo "Pembulatan nilai decimal ke bulat : $pembulatan <br/>" ; | |
$pembulatannaik = ceil($decimal); | |
echo "Pembulatan nilai naik : $pembulatannaik <br/>"; | |
$pendekatan = round($decimal, 3); | |
echo "Pendekatan nilai : $pendekatan <br/>"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment