FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-coding-problems/src/CheckPalindromeString.java at main · jfullstackdev/java-coding-problems · GitHub
jfullstackdev
/
java-coding-problems
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
6
Star
35
Code
Pull requests
0
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
java-coding-problems
/
src
/
CheckPalindromeString.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
28 lines (21 loc) · 643 Bytes
Breadcrumbs
java-coding-problems
/
src
/
CheckPalindromeString.java
Copy path
File metadata and controls
28 lines (21 loc) · 643 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
public
class
CheckPalindromeString
{
boolean
checkPalindromeString
(
String
input
) {
boolean
result
=
true
;
int
length
=
input
.
length
();
for
(
int
i
=
0
;
i
<
length
/
2
;
i
++) {
if
(
input
.
charAt
(
i
) !=
input
.
charAt
(
length
-
i
-
1
)) {
result
=
false
;
break
;
}
}
return
result
;
}
public
static
void
main
(
String
[]
args
) {
String
word
=
"kayak"
;
CheckPalindromeString
palindrome
=
new
CheckPalindromeString
();
System
.
out
.
print
(
"is `"
);
System
.
out
.
print
(
word
);
System
.
out
.
print
(
"` a palindrome ? "
);
System
.
out
.
println
(
palindrome
.
checkPalindromeString
(
word
));
}
}
Back
|
FazBrowse Home
|
New Git URL