Write a program segment that translates an integer value into a letter grade. Between 90 and 100 the segment should output 'A', between 80 and 89 it should output 'B', between 70 and 79 it should output 'C', between 60 and 69 it should output 'D' and less than 60 it should output 'E'. The last line of your program segment should be a println that outputs the letter grade. Your code should use an int named numberGrade for comparisons. For Eclipse platform .