FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaExamples/ConsoleDemo.java at master · alimogh/JavaExamples · GitHub
alimogh
/
JavaExamples
Public
forked from
CMPundhir/JavaExamples
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaExamples
/
ConsoleDemo.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (32 loc) · 876 Bytes
Breadcrumbs
JavaExamples
/
ConsoleDemo.java
Copy path
File metadata and controls
36 lines (32 loc) · 876 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
com
.
cmpundhir
;
import
java
.
io
.
Console
;
class
ConsoleDemo
{
private
static
String
savedUsername
=
"cmpundhir"
;
private
static
char
[]
savedPassword
= {
's'
,
't'
,
'r'
,
'o'
,
'n'
,
'g'
};
private
static
boolean
isVerified
(
String
un
,
char
[]
ps
){
if
(
un
.
equals
(
savedUsername
)){
for
(
int
i
=
0
;
i
<
savedPassword
.
length
;
i
++){
if
(
savedPassword
[
i
]!=
ps
[
i
]){
System
.
out
.
println
(
"Incorrect Password"
);
return
false
;
}
}
}
else
{
System
.
out
.
println
(
"Incorrect username"
);
return
false
;
}
return
true
;
}
public
static
void
main
(
String
[]
args
){
String
username
;
char
[]
password
;
System
.
out
.
println
(
"Enter username : "
);
Console
con
=
System
.
console
();
username
=
con
.
readLine
();
System
.
out
.
println
(
"Enter password : "
);
password
=
con
.
readPassword
();
if
(
isVerified
(
username
,
password
)){
System
.
out
.
println
(
"Welcome "
+
username
);
}
}
}
Back
|
FazBrowse Home
|
New Git URL