Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Q2.

In your script, create the following variables:


$a=8;
$b=6;
$c=5;

Write a php script to print out the following:


Delta= -124 where the solution calculated using 6 2-4*8*5

Formula: b2-4*a*c
When the values of variables change your output should change accordingly.

<?php
$a=8;
$b=6;
$c=5;
$result = ($b * $b)-4* $c * $a;
echo "Delta= ", $result ," where the solution calculated using",$b,"^2 - 4 *",$a,"*",$c;
?>

You might also like