Think about it logically. If you start on the low end ( number < 50) then they are all true. If you start on the high end and cascade down it makes more sense:
1 2 3 4 5 6 7 8 9
if(grade > 89)
{
// A+
} else {
if(grade > 85)
{
// A
}
... // and so on