I'm stuck on the first one. (Stop laughing.) The program is supposed to take the input of a number grade and turn it into a letter grade. I think I'm close, but I'm missing something. No matter what number I put in, I get a result of 'A.'
|| is the logical or operator, so numberGrade >= 90 || numberGrade <= 99 is always true.
If numberGrade >= 90 is false, then the grade is <90 - therefore the second condition will be true.