X

How to Find Largest Value Between Three Value Using PHP?

आज इस आर्टिकल में हम आपको How to Find Largest Value Between Three Value Using PHP? के बारे में बताएंगे

Problem:- How to FindLargest Value Between Three Value Using PHP?

Solution – Find Largest Value Between Three Value Using PHP

<?php
$a = 100;
$b = 125;
$c = 205;
if($a>$b && $a>$c){
 print "$a is largest";
}else if($b>$a && $b>$c)
 print "$b is largest";
else{
 print "$c is largest";
}
?>

इसे भी पढ़े – How to Store Multiple Elements per Key in an Array?