This is a C++ program designed to calculate the letter grade based on a student's score and the class average score, using a predefined grade chart. The program prompts the user to input their score and average, then outputs the corresponding letter grade from the chart.
Just download the exe from realease.
- Clone or download this repository to your local machine.
- Compile the
IAU-Letter-Grade-Calculatorsource code using a C++ compiler:g++ -o grade_calculator main.cpp
- Run the compiled program:
./grade_calculator
- Enter your score (between 30 and 90) and average score (between 20 and 70) when prompted.
- The program will output the corresponding letter grade.
Enter your score (30 to 90): 45
Enter the average score (20 to 70): 35
The letter score of score 45 and average 35 is: CB
This project is licensed under the MIT License.