-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.java
More file actions
67 lines (33 loc) · 887 Bytes
/
password.java
File metadata and controls
67 lines (33 loc) · 887 Bytes
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
// Jain Aarush
// March 3rd, 2019
// Program: password checker
// Mrs.Strelkovska ICS3U7
import java.util.Scanner;
public class password {
public static void main(String[] args) {
int password = 0;
int pin = 1234;
boolean check = false;
Scanner object1 = new Scanner(System.in);
int i = 0;
while (i < 3) {
System.out.print("Please enter your 4 digit pin number: ");
password = object1.nextInt();
if (password == 1234) {
check = true;
break;
} else {
int remain = 2 - i;
if (i != 2) {
System.out.println("Wrong pin entered, you have " + remain + " attempts remaining\n");
}
}
i++;
}
if (check) {
System.out.println("Pin Accepted! Welcome to the system.");
} else {
System.out.println("Wrong pin entered, you have been locked out of the system");
}
}
}