Computer Science, asked by misba07, 7 months ago

write a program to input 5 numbers from the user and display sum and average in C++​

Answers

Answered by vidushi75
0

Answer:

bruh i use java if you want this tell me

Answered by beenagoswami666666
1

Explanation:

#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;

}

plz make me in brainlist

Similar questions