hello every one..I'm IT student i do understand it's logic and algorithm but I'm having hard time in programming.. I do hve weak foundation in Programming..can i ask help from u for my assignment?
Problem:
Write a program that reads student scores, gets the best score, and then assigns grades based on the following scheme:
Grade is A if score is >= best - 10;
Grade is B if score is >= best - 20;
Grade is C if score is >= best - 30;
Grade is D if score is >= best - 40;
Grade is F otherwise.
The program prompts the user to enter the total number of students, then prompts the user to enter all the scores, and concludes by displaying the grades. The program reads the scores, then finds the best score, and finally assigns grades to the students based on the preceding scheme.