Question: C++ programming Password Verifier You are developing a software package that requires users to enter their own passwords. Your software requires that user passwords meet

C++ programming

Password Verifier

You are developing a software package that requires users to enter their own passwords. Your software requires that user passwords meet the following criteria:

the password should be at least 6 characters long

the password should contain at least one uppercase and at at least one lowercase letter

the password should have at least one digit.

the password should contain one of the following characters: ! @ # $ % but no other special characters

Write a program that asks the user for a password and verifies that it meets the stated criteria. If it doesn't, the program should display a message telling the user why.

User interface is important!

You should post pseudocode

Your code should have appropriate comments

Your code should be well-formatted, with camel case variables

Variables should be self-descriptive

Your code should have functions (besides main!)

Your functions should only do one thing

HINT: you should be passing pointers to functions

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!