Assignment:
Task:
Imagine you are developing a software package that requires user to enter their own passwords. Your software requires that user passwords meet the following criteria:
. The password should be at least six characters long.
. The password should contain at least one uppercase and at least one lowercase letter.
. The password should have at least one digit.
Q: Create a C++ program that asks for a password and then verifies that it meets the stated criteria. If it does not, the program should display a message telling the user why.
Example of it should be:
Atleast 6 characters long
At least one uppercase characters
At least one lowercase letter
At least one numeric digit
Enter a password
And if is correct it should say: the password is valid.
And is not correct it should say: the password is not valid.
Press any key to continue....