Respuesta :
Answer:
Step-by-step explanation:
function finder($add,$product) {
$inside_root = $add*$add - 4*$product;
if($inside_root >=0) {
$b = ($add + sqrt($inside_root))/2;
$a = $add - $b;...
Answer:
Step-by-step explanation:
function finder($add,$product) {
$inside_root = $add*$add - 4*$product;
if($inside_root >=0) {
$b = ($add + sqrt($inside_root))/2;
$a = $add - $b;...