← Back

Code Challenge 3.3 - Letter Grade


Objective

Create a program that evaluates student scores and assigns letter grades according to the following grade curve rules:

Skills to Practice

Challenge Tasks

Sample Output

Enter the number of students: 4
Enter score for student 1: 78 [Enter]
Enter score for student 2: 85 [Enter]
Enter score for student 3: 92 [Enter]
Enter score for student 4: 67 [Enter]

Student 1 score is 78 and grade is B
Student 2 score is 85 and grade is A
Student 3 score is 92 and grade is A
Student 4 score is 67 and grade is C