Home | Computer Science

Write a programmer using loop

<html>
<body>
<?php
function loop($a){
$a=0;
while($a<=5){

echo "hello<br>";

$a++;
}
}
loop();

?>
</body>
</html>

hello

hello

hello

hello

hello

Output:-
2 4
hello

 Write a programme using switch

<html>
<body>
<?php
function operators($a,$b,$c,$d,$e,$f,$g,$h,$i,$j,$k,$l){
$a=1;
$b=2;
$c=$a+$b;
$d=5;
$e=2;
$f=$a-$b;
$g=7;
$h=2;
$i=$a*$b;
$j=1;
$k=2;
$l=$a/$b;
echo $c;
echo $f;
echo $i;
echo $l;
}
operators();

?>
</body>
</html>

output:- 

The salarie of Vanquish is700000The salarie of Prabhpreet is10000The salarie of Gursharan is600000