Skip to content
Advertisement

Java loop asking for input until user enters something acceptable

As an exercise, I want to create a popup window where user enters a string, what I want to achieve:

  1. If they enter yes, print YES
  1. If they enter no, print NO
  2. If they enter something else, loop until they enter yes or no then print YES or NO

1 and 2 work, 3 will loop but then print nothing after yes or no is entered

any ideas?

JavaScript

Advertisement

Answer

the looping is incorrect, instead of else if you should just use if right after this comment // the two loops here work perfectly

JavaScript

if you would like to improve code, do below

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