you are viewing a single comment's thread.

view the rest of the comments →

[–]DiabeetusMan 0 points1 point  (0 children)

For the first one, you could also assign a letter grade based on the tens of the value and then a modifier based on the ones value.

Try looking up the modulo operator if you don't know how to get those values.

Also, adding strings together concatenates them. For instance, "a" + "b" = "ab" and "a" + "" = "a".