program wont compile help?

it says on line 20 when i try to compile, i need ; before {
how do i fix this i ended the line with ;
is my code correct?
thanks!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <iostream>

using namespace std;

int main()
{


    double scores[20];
    double sum,avg;
    int i, count;
    cout << "Enter score count<1-20>"<<endl;
    cin>>count;

    if((count<0) or(count>20))



    {
        cout<<"Invalid Count"<<endl;
        return 0;
    }




    for(i=0;i<count;i++)

    {
        cout<<"Enter score" <<endl;
        cin>>scores[i];
        sum=sum+scores[i];
    }



    avg=sum/count;



    cout<<"Original Scores: ";
    for(i=0;i<count;i++)

    {


    cout<<" " <<scores[i]<<endl;




    }

    cout<<"Average Score "<<avg<<endl;

    return 0;
}
Topic archived. No new replies allowed.