Connect with knowledgeable individuals and get your questions answered on IDNLearn.com. Get accurate and comprehensive answers from our network of experienced professionals.

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


Sagot :

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