Skip to main content

Que 1:-Write a program to find rectangle of squre with site 5,2 ?

<?php

$l=5;

$w=2;

$rect=2*($l+$w);

echo $rect;

?>



Comments