1. Create a new for loop that will print numbers from 0 to 9.
  2. Create a new for loop that goes through numbers from 0 to 100.
    1. Don’t print the numbers.
    2. If the number is between 60 to 70, print “Your grade is D”. You have to use AND (&&).
    3. If the number is between 70 to 80, print “Your grade is C”. You have to use AND (&&).
    4. If the number is between 80 to 90, print “Your grade is B”. You have to use AND (&&).
    5. If the number is between 90 to 99, print “Your grade is A”. You have to use AND (&&)
    6. If the number is equal to 100, print “Your grade is A+, good job”.
  3. Do the following
    1. Get input from Shell: “How many times you want to loop: “
    2. Convert user input to an Integer.
    3. Create a for loop and loop according to user input.
    4. Inside the for loop, do the following. Print “Hello AYCLOGIC”.
    5. Example
      How many times you want to loop: 4
      Hello AYCLOGIC
      Hello AYCLOGIC
      Hello AYCLOGIC
      Hello AYCLOGIC