Skip to content
Advertisement

How do I successfully close the While loop in this code? It seems to not recognize my break condition?

The prompt for the problem goes as follows:

Create an interactive student records system.
Prompt the user for a student name.
Then prompt the user for a numeric grade
Repeat this until the user enters ‘done’ in place of a name.
Then print each student and the average of their grades

I have come up with the following code (I’m a beginner guys, sorry if this is obvious)

JavaScript

I am trying to print the averages after I type ‘done’ for the name input, but it just moves on to the next input inquiry. Why is this, and how do I fix it?

Advertisement

Answer

There are many mistakes in the code but I will break them down in my corrected version.

JavaScript

I hope this helps, let me know if something is unclear.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement