Can someone take a look at my code and see if they notice something wrong.
int score;
char grade =0;
// read in total score
cout << endl;
cout << "Enter total score (float, must be <= 100): ";
cin >> score;
if (score >= 85);
grade = 'A';
else if (score >= 75);
grade = 'B';
else if (score >= 65);
grade = 'C';
else if (score >= 55);
grade = 'D';
else
grade = 'F';
End if // score >= 55
End if // score >= 65
End if // score >= 75
End if // score >= 85
// display the result
cout << endl;
cout << "Your grade for CMSC 101 is: " << grade << endl;
return (0); // terminate with success