Quote (boblong11 @ Fri - Jul 10 2009 - 16:41:36)
so far
while (value != -1) {
cout << "Enter numbers";
cin >> value;
if (value != -1) {
total = total + value;
count = count + 1;
}
}
doesnt say anywhere that you need to count the number of numbers entered
but you do need to keep track of largest number