Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transport Operations

Authors: Allen Stuart

2nd Edition

978-0470115398, 0470115394

Students also viewed these Programming questions