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

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

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

 class Result{

	private $shape=null;
	function __construct()
	{
		$this->shape=new $_GET['action']();
	}
	function __toString(){
		$result=$this->shape->shapeName.'的周长:'.round($this->shape->perimoter(),2).'<br>';
		$result.=$this->shape->shapeName.'的面积:'.round($this->shape->area(),2).'<br>';
		return $result;
	}
}


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