Iteration - Condition Controlled

Cards (4)

  • WHILE answer != “computer“
    Answer = INPUT(“What is the password“)
    ENDWHILE
  • While Loop
  • DO
    Answer = INPUT(“What is the password?)
    UNTIL answer == “computer“
  • Do Until Loop