C++ Basic
C++ Interview Programs
- C++ Interview Programs
- C++ Abundant Number
- C++ Amicable Number
- C++ Armstrong Number
- C++ Average of N Numbers
- C++ Automorphic Number
- C++ Biggest of three numbers
- C++ Binary to Decimal
- C++ Common Divisors
- C++ Composite Number
- C++ Condense a Number
- C++ Cube Number
- C++ Decimal to Binary
- C++ Decimal to Octal
- C++ Disarium Number
- C++ Even Number
- C++ Evil Number
- C++ Factorial of a Number
- C++ Fibonacci Series
- C++ GCD
- C++ Happy Number
- C++ Harshad Number
- C++ LCM
- C++ Leap Year
- C++ Magic Number
- C++ Matrix Addition
- C++ Matrix Division
- C++ Matrix Multiplication
- C++ Matrix Subtraction
- C++ Matrix Transpose
- C++ Maximum Value of an Array
- C++ Minimum Value of an Array
- C++ Multiplication Table
- C++ Natural Number
- C++ Number Combination
- C++ Odd Number
- C++ Palindrome Number
- C++ Pascalβs Triangle
- C++ Perfect Number
- C++ Perfect Square
- C++ Power of 2
- C++ Power of 3
- C++ Pronic Number
- C++ Prime Factor
- C++ Prime Number
- C++ Smith Number
- C++ Strong Number
- C++ Sum of Array
- C++ Sum of Digits
- C++ Swap Two Numbers
- C++ Triangular Number
C++ Program to find Average of N Numbers
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 C++ 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 C++ code that accomplishes this task.
#include <iostream>
class FindAverage {
public:
// Function to find the average of N numbers
static double findAverage(int n) {
double sum = 0, number;
// Input N numbers from the user
std::cout << "Enter " << n << " numbers:" << std::endl;
for (int i = 0; i < n; ++i) {
std::cin >> number;
sum += number;
}
// Calculate the average
double average = sum / n;
return average;
}
};
// Driver program
int main() {
// Replace this value with your desired number of inputs (N)
int n = 5;
// Call the function to find the average
double result = FindAverage::findAverage(n);
// Display the result
std::cout << "The average of the entered numbers is: " << result << std::endl;
return 0;
}
π» Testing the Program
To test the program with different numbers, modify the value of n in the main function.
Enter 5 numbers: 1 2 3 4 5 The average of the entered numbers is: 3.000000
π§ How the Program Works
- The program defines a class FindAverage containing a static method 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.
- Inside the main function, replace the value of n with your desired number of inputs.
- The program calls the findAverage method, 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:
Author
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
If you have any doubts regarding this article (C++ Program to find Average of N Numbers) please comment here. I will help you immediately.