125k views
24 votes
Create pseudocode that accepts name input by the user and the display the name. The

program will stop when user key in STOP.

User Lisette
by
4.3k points

1 Answer

4 votes

Answer:

The pseudocode is as follows:

input name

while name != "STOP"

print name

input name

End while

Step-by-step 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

User JerKimball
by
4.2k points