Question: Programming Challenge: 12 - Password Verifier Six characters? Seriously? Set the minimum password length to twelve characters. In addition to the requirement that the password
Programming Challenge: 12 - Password Verifier
Six characters? Seriously? Set the minimum password length totwelvecharacters.
In addition to the requirement that the password contain at least one upper case letter, one lower case letter, and one digit, add the additional requirement that the password contain at least one "special" character. We will consider any character that is printable, not alphanumeric, and not a space character to be "special." That includes punctuation, but may include additional non-punctuation characters. Unfortunately at our level of C++ it's more or less impossible for us to actually test passwords like Seor_99 but the (with a tilde) would count as a special character using our rules.
We will also require that the passwordnotcontain any space characters.
Write functions to complete these tasks as appropriate.
For your screen shot, begin with the password "lost frogs" (with a space), which will fail almost every test. Correct the password, one test at a time, until you end up with "Lost_Frogs99" for the final (and acceptable) password.
Deliverables: The .cpp files and screen shots for both Programming Challenges.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
