PHP Programing language

adplus-dvertising
Write a Program to enter any number square a number
Previous Home Next

<html>
<head>
<title>Square of numbers</title>
</head>
<body>
<?php
$a;
for($a=1; $a<=5; $a++)
$a=sqrt($a)*sqrt($a);
{
echo(sqrt($a) . "<br />");
}
?>
</body>
</html>
output
2.4494897427832
Previous Home Next