1. Create a forever loop that will keep asking a user the following question:
    1. What grade did you get on your Java test?
    2. If the user answers with a grade that is bigger or equal to 90 then
      1. print “Good job, you can take a good rest and play your video games all day long”.
      2. stop the loop.
    3. If the user answers with a grade that is between 80 to 90 then
      1. print “Not bad, but I am sure you can do better. Why don’t you study a little bit more and retake the test.”
    4. If the user answers with a grade that is between 70 to 80 then
      1. print “I think you need to study a lot harder and retake the test.”
    5. If the user answers with a grade that is lower than 70 then
      1. print “All right you are grounded, no video games for 1 year and no computer”.
      2. stop the loop.
  2. In the above exercise, you should only stop the loop when the user get above 90 or below 70.