PHP Program to find Biggest of Three Numbers
You are Here:
Find Biggest of Three Numbers
In the following example, we will find which of the following numbers (40, 25, 7) is the biggest number.
Example
PHP Compiler
<?php
$a = 40;
$b = 25;
$c = 7;
echo "The numbers are a = $a, b = $b, c = $c <br>";
if(($a > $b) && ($a > $c))
echo "a = $a is the biggest number";
else if($b > $c)
echo "b = $b is the biggest number";
else
echo "c = $c is the biggest number";
?>
Output
The numbers are a = 40, b = 25, c = 7
a = 40 is the biggest number
Reminder
Hi Developers, we almost covered 90% of String functions and Interview Question on PHP with examples for quick and easy learning.
We are working to cover every Single Concept in PHP.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.