Skip to content
Advertisement

how to make the program to keep asking until the a valid number is entered?

i have made a code that can ask user to input the number of student and ask to input the grade of that student, but i can’t make the program do just like the example. i tried using “do…While” and it did ask to enter the grade again for student 1 only, when i enter an invalid number for student 2, it reset back to sudent1. My question is how to make the program to keep asking until the a valid number is entered? Just like the sample below where the program ask the grade again for student2.

  • A sample session is as follow:
  • Enter the number of students: 3
  • Enter the grade for student 1: 55
  • Enter the grade for student 2: 108
  • Invalid grade, try again…
  • Enter the grade for student 2: 56
  • Enter the grade for student 3: 57
  • The average is 56.0 */
JavaScript

Advertisement

Answer

The issue is your for loop progresses forward no matter what you do and it increases the index. I think you just need a while loop that keeps running until the correct value is inserted.

JavaScript
Advertisement