easygradecalculator 0.1.3

easy grade calculator
Documentation
  • Coverage
  • 16.67%
    1 out of 6 items documented1 out of 6 items with examples
  • Size
  • Source code size: 2.83 MB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 331.91 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • collegetool

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.

Usage

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

easy-grade 4.5 3.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:

4.5
3.5
2.5

The average for these grades can be calculcated as below:

cat ~/grades.txt | easy-grade