Няма описание

UserValidation.cpp 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. /* This is a simple example to test input validation. The user must create an account with an username and password. The username must be the student number.
  5. * This will determine if the username is of exactly 9 digits. It will also determine if the user enters a password
  6. * with the following characteristics.
  7. * 1. 8 or more characters of length
  8. * 2. At least 1 upper case letter
  9. * 3. At least 1 lower case letter
  10. * 4. Al least 1 symbol
  11. * 5. At least 1 digit
  12. * The program will not finish until the user enters a correct password and then re-enters the same password.
  13. */
  14. //Input validation for the username
  15. bool isUsername(const string &username){
  16. // INSERT YOUR CODE HERE
  17. return 1 ; // CHANGE
  18. }
  19. //Input validation for the password
  20. bool isPassword(const string &password){
  21. // INSERT YOUR CODE HERE
  22. return 1 ; // CHANGE
  23. }
  24. int main()
  25. {
  26. string password, username, repassword;
  27. bool flaguser = false, flagpass = false;
  28. cout << "Please enter username (Student number, with or without dash): ";
  29. cin >> username;
  30. do{
  31. if(isUsername(username)){
  32. flaguser = true;
  33. cout << "The username is correct." << endl;
  34. }
  35. else{
  36. cout << "Please enter a correct username: ";
  37. cin >> username;
  38. }
  39. }while(!flaguser);
  40. cout << endl;
  41. cout << "Please enter a password with the following conditions: " << endl;
  42. cout << "\t1. 8 or more characters" << endl;
  43. cout << "\t2. At least 1 upper case letter" << endl;
  44. cout << "\t3. At least 1 digit" << endl;
  45. cout << "\t4. At least 1 symbol" << endl << endl;
  46. do{
  47. cout << "Please enter password: ";
  48. cin >> password;
  49. if(password.length() >= 8){
  50. if(isPassword(password)){
  51. cout << "Please reenter the password: ";
  52. cin >> repassword;
  53. if(password == repassword){
  54. cout << "The password matched." << endl;
  55. flagpass = true;
  56. }
  57. else {
  58. cout << "The password did not matched." << endl;
  59. }
  60. }
  61. else{
  62. cout << "The password did not pass the conditions." << endl;
  63. }
  64. }
  65. }while(!flagpass);
  66. cout << "Congratulations, you have succesfully created an account!" << endl;
  67. return 0;
  68. }