Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. //variables
  2. int minLength = 8;
  3. string uppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  4. string lowercase = "abcdefghijklmnopqrstuvwxyz";
  5. string digits = "0123456789";
  6. string specialChars = "!#$%&*";
  7. int score = 0;
  8.  
  9. //User
  10. Console.WriteLine("Enter a password:");
  11. string password = Console.ReadLine();
  12.  
  13. //Points
  14. if (minLength >= 8)
  15. {
  16. score++;
  17. }
  18. if (Tools.Contains(password, uppercase))
  19. {
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement