Enter a website and the program will create a password based on an algorithm. Enter the website with no spaces, include the ending (e.g. .com), but exclude the beginning, (https://www.).
Pseudocode/Algorithm: Start Identify the first two letters of the ending of the site if endletter1 != endletter2 then if letter1 comes before letter2 in the alphabet Capitalize letter1 else Keep both of the letters lowercase else Keep both of the letters lowercase Set equal to Passwd Identify the total number of letters in the site Set Passwd = Passwd + (42-count) Identify the first two vowels in the site Set Passwd = Passwd + vowels Identify the first two letters in the site If letter2 comes before g in the alphabet Capitalize letter2 Set Passwd = Passwd + letter1 + letter2 Identify the total number of characters in the site Identify the user’s birth year Identify the last two digits of the user’s birth year minus the total number of characters in the site Repeat 2 Times Set Passwd = Passwd + last2digits Identify the last digit in the total number of characters in the site Create a special character that corresponds to the symbol above the number(last digit) on the keyboard Set Passwd = Passwd + special character Move the last two characters in the password to the beginning of the password End