-
Notifications
You must be signed in to change notification settings - Fork 0
/
RevisedPasswordMin.java
78 lines (34 loc) · 1.09 KB
/
RevisedPasswordMin.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import java.util.Scanner;
import java.io.*;
public class PasswordMin{
public static void Min(){
while(true; i++) {
i=0
;
boolean number = false;
boolean upCharacters = false;
boolean lowCharacters = false;
boolean specialChar = false;
Scanner sc=new Scanner(System.in);
System.out.println("Please enter a password... ");
String password=sc.nextLine();
if(password.length() < 8){
System.out.println("Your password is not long enough.");
} else {
String passwordArray[] = password.split("");
if(passwordArray[i] >= "A" && passwordArray[i] <= "Z"){
upCharacters = true;
} else {
UpperLettersTest = 1;
}
if(passwordArray[i] >= "a" && passwordArray[i] <= "z"){
lowCharacters = true;
else{
System.out.println("You have no lowercase letters.");
else{
System.out.println("Your password is long enough");
}
}
}
}
}