Easy Average Grade Calculator

This tool is a easy average grade average calulcator written in Rust. It takes a list of graded to calculated the average and can be used as a library by other applications.

Thebestdegree.com provided a more complex grade calulcator for weighted grade calculation for college or high school students and teachers.

These tools are all implemented in Rust.

0.1 Usage

The easy grade calulcator can either read the input grades from arguments or a text file as shown below:

grade-avg 3.5 2.5

Another way to use the tool would be to create a txt file as the input grades. Create a file grades.txt with the contents:

1.5
3.5
2.5

The average for these grades can be calculcated as below:

cat ~/grades.txt | grade-avg