Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

PHP Program to find Biggest of three numbers

Posted in PHP Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 306 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
PHP Program to find Biggest of three numbers

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the domain of programming, solving problems related to numerical comparisons is a common task. One such problem is determining the largest among three given numbers. This is a fundamental operation in many algorithms and applications.

In this tutorial, we will walk through a PHP program designed to find the biggest among three numbers. The program compares the values and identifies the maximum, showcasing a fundamental concept in programming logic.

πŸ“„ Example

Let's delve into the PHP code that accomplishes this task.

findBiggest.php
Copied
Copy To Clipboard
<?php

// Function to find the biggest of three numbers
function findBiggest($num1, $num2, $num3)
{
    if ($num1 >= $num2 && $num1 >= $num3) {
        return $num1;
    } elseif ($num2 >= $num1 && $num2 >= $num3) {
        return $num2;
    } else {
        return $num3;
    }
}

// Driver program
// Replace these values with your desired numbers
$number1 = 14;
$number2 = 7;
$number3 = 22;

// Call the function to find the biggest number
$result = findBiggest($number1, $number2, $number3);

// Display the result
echo "The biggest number is: $result\n";

?>

πŸ’» Testing the Program

To test the program with different numbers, simply replace the values of number1, number2 and number3 in the main function.

Output
The biggest number is: 22

🧠 How the Program Works

  1. The program defines a function findBiggest that takes three numbers as input and returns the largest among them using conditional statements (if-elseif-else).
  2. Replace the values of $number1, $number2, and $number3 with the desired numbers.
  3. The program calls the findBiggest function, and the result is displayed.

🧐 Understanding the Concept to find the Biggest of three Numbers

Before delving into the code, let's understand the concept behind finding the biggest of three numbers. The program uses conditional statements (if-else) to compare the values and determine which is the largest.

For example, consider the numbers 14, 7, and 22. The program evaluates and identifies 22 as the largest number.

🎒 Optimizing the Program

While the provided program is straightforward, consider exploring and implementing alternative approaches or optimizations for determining the maximum of three numbers.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
6 months ago

If you have any doubts regarding this article (PHP Program to find Biggest of three numbers) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy