35.9k views
1 vote
CODEHS Exercise 7.8.2 Usernames and Passwords: Pseudocode

Using the AP style pseudocode, write a program that displays a list of 5 usernames. The program will then ask the user to create a password for each user that will be stored in a separate list. Once all the passwords are entered the program should display the list of passwords.

User Cubez
by
7.7k points

1 Answer

3 votes

Answer:

Here's an example pseudocode program using AP style:

DECLARE usernames AS ARRAY OF STRINGS WITH 5 ELEMENTS

DECLARE passwords AS ARRAY OF STRINGS WITH 5 ELEMENTS

SET usernames[0] = "johndoe"

SET usernames[1] = "janedoe"

SET usernames[2] = "bobsmith"

SET usernames[3] = "sarahlee"

SET usernames[4] = "alexjones"

DISPLAY "The following usernames have been created:"

FOR i FROM 0 TO 4

DISPLAY usernames[i]

FOR i FROM 0 TO 4

DISPLAY "Please enter a password for " + usernames[i]

SET password = GET USER INPUT

SET passwords[i] = password

DISPLAY "The following passwords have been set:"

FOR i FROM 0 TO 4

DISPLAY passwords[i]

This program declares two arrays: one for the usernames and one for the passwords. It sets the values of the usernames array and displays them for the user. It then prompts the user to create a password for each username, and stores the passwords in the passwords array. Finally, it displays the passwords for the user. Note that this is just a pseudocode program and may need to be modified or adapted for use in a specific programming language or environment.

User Vie
by
6.9k points