I changed that, thanks. Still does not work correctly.
The program ask "Please enter the student's name" and I enter a name. Then the program keeps on printing "Please enter student's score" continuously.
Looks like it's an issue w/ entering a first name and a last time... It (mostly) works when you enter in a single word for the name. You can ask for last name and first name separately as a solution.
1) You are missing a semi-colon on line 18.
2) I got rid of all the apostrophes around the numbers. They are not necessary.
3) I got rid of ceil (not familiar with the function, but it was causing errors).
4) Changed line 27 to count = count + 1; (maybe not necessary).
5) Declared studentscore, since you hadn't done that yet.
Does your compiler give you errors? A lot of the mistakes I corrected above should be very obvious to fix after looking at compiler errors.