<?php
header('Content-Type: text/html; charset=utf-8');
define ('ROOT', $_SERVER['DOCUMENT_ROOT']);
include ROOT.'/assets/php/head.php';
/**
* 求圆周长面积已知直径
* 直径40
* */
$val='40';
$img='';
//调动方法
mill($val,$img);
/**
* mill 是磨粉机的方法
* $val 传值过来计算,以空格分割成数值
* $img 自定义图片名,默认以文件名为图片名
* */
function mill($val,$img){
//初始化
include ROOT.'/assets/php/init.php';
img($img);
//设置所有bc数学函数的默认小数点保留位数
bcscale (2);
//以空格分割成数值
$vals = explode(' ',$val);
$d = evev($vals[0]);
//已知条件
$know = array();
array_push($know, $val);
$v0 = eveq($vals[0]);
array_push($know, "直径:$v0");
//计算步骤
$step = array();
array_push($step, "圆的周长:");
$pi = pi();
array_push($step, "{$math['eqs']} $pi{$math['mul']}$d");
$L = bcmul($d,$pi);
array_push($step, "{$math['eqs']} $L");
array_push($step, "圆的面积:");
array_push($step, "{$math['eqs']} $pi{$math['mul']}{$math['lpar']}$d{$math['div']}2{$math['rpar']}{$math['pow']}");
$r = bcdiv($d,2);
array_push($step, "{$math['eqs']} $pi{$math['mul']}$r{$math['pow']}");
$rr = bcmul($r,$r);
array_push($step, "{$math['eqs']} $pi{$math['mul']}$rr");
$S = bcmul($pi,$rr);
array_push($step, "{$math['eqs']} $S");
//算出结果
$ends = array();
array_push($ends, "圆的周长:$L");
array_push($ends, "圆的面积:$S");
//公式表示
$from = array();
array_push($from, "圆的周长:L{$math['eq']}πd{$math['eq']}2{$math['pi']}r");
array_push($from, "圆的面积:S={$math['pi']}{$math['lpar']}d{$math['div']}2{$math['rpar']}{$math['pow']}={$math['pi']}r{$math['pow']}");
//公式说明
$info = array();
array_push($info, "圆的周长 等于 圆周率 乘以 直径。");
array_push($info, "圆的面积 等于 圆周率 乘以 左括号 直径 除以 二 右括号 的 平方。");
know($know);
ends($ends);
from($from);
step($step);
info($info);
}
?>
<?php include ROOT.'/assets/php/foot.php'; ?>
结果:
☁参考上图
☀已知条件
40
直径:40
♠算出结果
圆的周长:125.66
圆的面积:1256.63
♦公式表示
圆的周长:L=πd=2πr
圆的面积:S=π(d÷2)²=πr²
♣计算步骤
圆的周长:
≈ 3.1415926535898×40
≈ 125.66
圆的面积:
≈ 3.1415926535898×(40÷2)²
≈ 3.1415926535898×20.00²
≈ 3.1415926535898×400.00
≈ 1256.63
♥公式解释
圆的周长 等于 圆周率 乘以 直径。
圆的面积 等于 圆周率 乘以 左括号 直径 除以 二 右括号 的 平方。
标签:3.1415926535898,周长,125.66,面积,40,已知,100006,圆周,直径
From: https://www.cnblogs.com/onestopweb/p/16905184.html