博客列表 >计算图形的面积与周长-5

计算图形的面积与周长-5

柯二南的博客
柯二南的博客原创
2018年01月24日 18:30:07631浏览
<?php


class Rect extends Shape {

    private $width = 0;
    private $height = 0;

    function __construct() {
        $this->shapeName = '矩形';

        if ($this->validate($_POST["width"], "宽度") & $this->validate($_POST["height"], "高度")) {


            $this->width = $_POST["width"];
            $this->height = $_POST["height"];
        }
    }

    function area() {
        return $this->width * $this->height;
    }

    function perimoter() {
        return 2 * ($this->width + $this->height);
    }

}


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议