write a program in c++ to read n integers numbers in array and display to their average.
Answers
#include <iostream>
using namespace std;
int main()
{
int n, i;
float num[100], sum=0.0, average;
cout << "Enter the numbers of data: ";
cin >> n;
while (n > 100 || n <= 0)
{
cout << "Error! number should in range of (1 to 100)." << endl;
cout << "Enter the number again: ";
cin >> n;
}
for(i = 0; i < n; ++i)
{
cout << i + 1 << ". Enter number: ";
cin >> num[i];
sum += num[i];
}
average = sum / n;
cout << "Average = " << average;
return 0;
}
Enter the numbers of data: 6
1. Enter number: 45.3
2. Enter number: 67.5
3. Enter number: -45.6
4. Enter number: 20.34
5. Enter number: 33
6. Enter number: 45.6
Average = 27.69
This program calculates the average if the number of data are from 1 to 100.
If user enters value of n above 100 or below 100 then, while loop is executed which asks user to enter value of n until it is between 1 and 100.
When the numbers are entered by the user, subsequently the sum is calculated and stored in the variable sum.
After storing all the numbers, average is calculated and displayed.
Check out these related examples:
Print Number Entered by User
Find Largest Number Among Three Numbers
Check Whether a Number can be Express as Sum of Two Prime Numbers
Display Armstrong Number Between Two Intervals
Calculate Sum of Natural Numbers
C++ Examples
Calculate Average of Numbers Using Arrays
Find Largest Element of an Array
Calculate Standard Deviation
Add Two Matrix Using Multi-dimensional Arrays
Multiply Two Matrix Using Multi-dimensional Arrays
Find Transpose of a Matrix
Multiply two Matrices by Passing Matrix to Function