Kalkulator dengan PHP. Kali ini kita akan belajar membuat aplikasi kalkulaor dengan menggunakan metode OOP dalam PHP. Tanpa banyak teori langsung saja kita praktek. Silahkan anda ketik kode dibwah ini ke dalam php editor anda. <?php class Matematika { private $x; private $y; public function Tambah($x, $y) { $this->x = $x; $this->y = $y; $hasil = $this->x + $this->y; return $hasil; } public function Kali($x, $y) { $this->x = $x; $this->y = $y; $hasil = $this->x * $this->y; return $hasil; } public function Kurang($x, $y) { $this->x = $x; $this->y = $y; $hasil = $this->x - $this->y; return $hasil; } public function Bagi($x, $y) { $this->x = $x; $this->y = $y; $hasil = $this->x / $this->y; return $hasil; } public function TampilkanForm() { echo '&l