Hello,
I am working on a small program that reads ten numbers, computes their average, and finds out how many numbers are above average. This is the set up I have so far:
#include <iostream>
using namespace std;
int main()
{
double myList[10];
myList[0] = 89
myList[1] = 56
myList[2] = 34
myList[3] = 98
myList[4] = 87
myList[5] = 94
myList[6] = 100
myList[7] = 69
myList[8] = 52
myList[9] = 73
return 0;
}
.... Now I just need to know how to use it!
Thanks for all the help!