Skip to content

Instantly share code, notes, and snippets.

@tarynsauer
Created June 30, 2013 00:05
Show Gist options
  • Save tarynsauer/5893213 to your computer and use it in GitHub Desktop.
Save tarynsauer/5893213 to your computer and use it in GitHub Desktop.
Calculate a letter grade
def get_grade(average)
case average
when 90..100
"A"
when 80..90
"B"
when 70..80
"C"
when 60..70
"D"
when 0..60
"F"
else
"Error"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment