Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

PHP Program to find Average of N Numbers

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

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the world of programming, dealing with numerical data and performing calculations is a fundamental skill. One common task is finding the average of a set of numbers. This is a basic operation used in various applications, ranging from statistical analysis to data processing.

In this tutorial, we will explore a PHP program designed to find the average of N numbers. The program takes a user-specified number of inputs, calculates their sum, and then computes the average.

πŸ“„ Example

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

findAverage.php
Copied
Copy To Clipboard
<?php

// Function to find the average of N numbers
function findAverage($n)
{
    $sum = 0;

    // Input N numbers from the user
    echo "Enter $n numbers:\n";

    for ($i = 0; $i < $n; ++$i) {
        // Input each number and add to the sum
        $number = (float) readline();
        $sum += $number;
    }

    // Calculate the average
    $average = $sum / $n;
    return $average;
}

// Driver program
// Replace this value with your desired number of inputs (N)
$n = 5;

// Call the function to find the average
$result = findAverage($n);

// Display the result
echo "The average of the entered numbers is: $result\n";

?>

πŸ’» Testing the Program

To test the program with different numbers, modify the value of $n in the code.

Output
Enter 5 numbers:
1 2 3 4 5 
The average of the entered numbers is: 3.000000

🧠 How the Program Works

  1. The program defines a function findAverage that takes an integer $n as input, prompts the user to input $n numbers, calculates their sum, and then computes and returns the average.
  2. Replace the value of $n in the main program with your desired number of inputs.
  3. The program calls the findAverage function, and the result is displayed.

🧐 Understanding the Concept to find Average of N Numbers

Before delving into the code, let's understand the concept behind finding the average of N numbers. The program uses a loop to input N numbers, calculates their sum, and then divides the sum by N to find the average.

For example, if the user enters 5 numbers (10, 15, 20, 25, 30), the program calculates (10 + 15 + 20 + 25 + 30) / 5, resulting in an average of 20.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing error handling for input validation to enhance the program's robustness.

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 Average of N 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