Operator Aritmatika di PHP
Pada tutotial kali ini kita akan membahas tentang operator aritmatika di php jadi langsung saja.
buat file dengan nama materi-4.php di dalam folder belajar-php/materi-4.php, kemudian ketikkan script dibawah ini :
<!DOCTYPE html>
<html>
<body>
<h1>Belajar PHP Operator Aritmatika </h1>
Nilai x =15
<br>
Nilai y = 3
<br>
<?php
$x = 15;
$y = 3;
echo "operator penjumlahan = ";
$hasil = $x + $y;
echo $hasil;
echo "<br>";
echo "operator Pengurangan = ";
$hasil = $x - $y;
echo $hasil;
echo "<br>";
echo "operator Perkalian = ";
$hasil = $x * $y;
echo $hasil;
echo "<br>";
echo "operator Pembagian = ";
$hasil = $x / $y;
echo $hasil;
echo "<br>";
echo "operator Modulus = ";
$hasil = $x % $y;
echo $hasil;
echo "<br>";
echo "operator Perpangkatan = ";
$hasil = $x ** $y;
echo $hasil;
echo "<br>";
?>
</body>
</html>
jika sudah silahkan simpan kemudian silahkan buka browser dan akses http://localhost/belajar-php/materi-4.php
Sekian dulu tutorial kali ini terima kasih.
Leave a Comment