Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,617 I was able to get that working, now I need the user to input the scores. I have it all set up, but I'm getting some crazy average.
#include <iostream>
using namespace std;
int main()
{
//... |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,617 #include <iostream>
using namespace std;
int main()
{
// Declare Variables
double myList[10];
double average; |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,617 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>... |