How to Find Largest Value Between Three Value Using PHP?

How to Expose and Route to a Resource?
How to Expose and Route to a Resource?

आज इस आर्टिकल में हम आपको 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?

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *