Advertisement
CHaNStar

o2

Feb 5th, 2020
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.    
  3.     class KelompokMakanan {
  4.         public$makanan;
  5.  
  6.         public function jenis() {
  7.             $makanan = $this->makanan;
  8.             switch($makanan) {
  9.                 case 'Daging' : return 'Karnivora';
  10.                 case 'Sayuran' : return 'Herbivora';
  11.                 case 'Capcay' : return 'Omnivora';
  12.             }
  13.         }
  14.     }
  15.  
  16.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement