PHP實現的簡單三角形、矩形周長面積計算機分享_php執行個體

來源:互聯網
上載者:User
運用PHP物件導向的知識設計一個圖形計算機,同時也運用到了抽象類別知識,這個計算機可以計算三角形的周長和面積以及矩形的周長和面積。本圖形計算機有4個頁面:1.PHP圖形計算機首頁index.php; 2.形狀的抽象類別shape.class.php; 3三角形計算類triangle.class.php; 4.矩形計算類rect.class.php。

PHP圖形計算機代碼點擊下載: php圖形計算機.zip

代碼分別如下:

PHP圖形計算機首頁:

            簡單的圖形計算機                                     

簡單的圖形計算機

矩形 || 三角形
<?php error_reporting(E_ALL & ~E_NOTICE); //設定自動載入這個程式需要的類檔案 function __autoload($classname){ include strtolower($classname).".class.php"; } //判斷使用者是否有選擇單擊一個形狀連結 if(!empty($_GET['action'])) { //第一步:建立形狀的對象 $classname = ucfirst($_GET['action']); $shape=new $classname($_POST); //第二步:調用形狀的對象中的介面view() $shape -> view(); //第三步:使用者是否提交了對應圖形介面的表單 if(isset($_POST['dosubmit'])) { //第四步:查看使用者輸出的資料是否正確, 失敗則提示 if($shape->yan($_POST)) { //計算圖形的周長和面積 echo $shape->name."的周長為:".$shape->zhou()."
"; echo $shape->name."的面積為:".$shape->area()."
"; } } //如果使用者沒有單擊連結, 則是預設訪問這個主程式 }else { echo "請選擇一個要計算的圖形!
"; } ?>

形狀的抽象類別:

abstract class  Shape{    //形狀的名稱    public $name;     //形狀的計算面積方法    abstract function area();     //形狀的計算周長的方法    abstract function zhou();     //形狀的圖形表單介面    abstract function view();    //形狀的驗證方法    abstract function yan($arr); }

三角形計算類檔案:

class Triangle extends Shape {    private $bian1;    private $bian2;    private $bian3;     function __construct($arr = array()) {        if(!empty($arr)) {            $this->bian1 = $arr['bian1'];            $this->bian2 = $arr['bian2'];            $this->bian3 = $arr['bian3'];         }         $this->name = "三角形";    }     function area() {        $p =    ($this->bian1 + $this->bian2 + $this->bian3)/2;         return sqrt($p*($p-$this->bian1)*($p-$this->bian2)*($p-$this->bian3));    }     function zhou() {        return $this->bian1 + $this->bian2 + $this->bian3;    }     function view() {        $form = '';        $form .= $this->name.'第一個邊:
'; $form .= $this->name.'第二個邊:
'; $form .= $this->name.'第三個邊:
'; $form .= '
'; $form .=''; echo $form; } function yan($arr) { $bj = true; if($arr['bian1'] < 0) { echo "第一個邊不能小於0!
"; $bj = false; } if($arr['bian2'] < 0) { echo "第二個邊不能小於0!
"; $bj = false; } if($arr['bian3'] < 0) { echo "第三個邊不能小於0!
"; $bj = false; } if(($arr['bian1']+$arr['bian2'] < $arr['bian3']) || ($arr['bian1'] + $arr['bian3'] < $arr['bian2']) || ($arr['bian2']+$arr['bian3'] < $arr['bian1'])) { echo "兩邊之和必須大於第三個邊"; $bj = false; } return $bj; }}

矩形計算類檔案:

class Rect extends Shape {    private $width;    private $height;     function __construct($arr=array()) {         if(!empty($arr)) {            $this->width = $arr['width'];            $this->height = $arr['height'];        }        $this->name = "矩形";    }     function area() {        return $this->width * $this->height;    }     function zhou() {        return 2*($this->width + $this->height);    }     function view() {        $form = '';        $form .= $this->name.'的寬:
'; $form .= $this->name.'的高:
'; $form .= '
'; $form .=''; echo $form; } function yan($arr) { $bg = true; if($arr['width'] < 0) { echo $this->name."的寬不能小於0!
"; $bg = false; } if($arr['height'] < 0) { echo $this->name."的高度不能小於0!
"; $bg = false; } return $bg; } }
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.