contestada

Create pseudocode that accepts name input by the user and the display the name. The
program will stop when user key in STOP.

Respuesta :

Answer:

The pseudocode is as follows:

input name

while name != "STOP"

  print name

  input name

End while

Explanation:

This gets name from the user

input name

This loop is repeated until the user inputs "STOP".

while name != "STOP"

This prints the name entered by the user

  print name

This gets another name input from the user

  input name

The loop ends here

End while