FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/07-Java-Programs/084-Palindrome-String.java at main · shaikbasha-dev/Java · GitHub
shaikbasha-dev
/
Java
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
07-Java-Programs
/
084-Palindrome-String.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
78 lines (59 loc) · 2.42 KB
Breadcrumbs
Java
/
07-Java-Programs
/
084-Palindrome-String.java
Copy path
File metadata and controls
78 lines (59 loc) · 2.42 KB
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
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
/*
* ============================================================================
* Program Name : Palindrome String
* File Name : 084-Palindrome-String.java
* Class Name : PalindromeString
*
* Description:
* This program accepts a String from the user and checks whether
* it is a palindrome by reversing the String and comparing it with
* the original String.
*
* Objective:
* - Understand how to read a String from the user.
* - Learn how to reverse a String using charAt().
* - Learn how to compare two Strings using equals().
*
* Author : Shaik Mahaboob Basha
* Repository : 01-Core-Java
* Folder : 08-Java-Programs
* ============================================================================
*/
import
java
.
util
.
Scanner
;
public
class
PalindromeString
{
// The main() method is the entry point of every Java application.
public
static
void
main
(
String
[]
args
) {
// Create a Scanner object to read input from the keyboard.
Scanner
scanner
=
new
Scanner
(
System
.
in
);
// Ask the user to enter a string.
System
.
out
.
print
(
"Enter a String: "
);
// Read the complete string entered by the user.
String
originalString
=
scanner
.
nextLine
();
// Declare a variable to store the reversed string.
String
reversedString
=
""
;
// Traverse the string from the last character to the first.
for
(
int
i
=
originalString
.
length
() -
1
;
i
>=
0
;
i
--) {
// Append the current character to the reversed string.
reversedString
=
reversedString
+
originalString
.
charAt
(
i
);
}
// Display the original string.
System
.
out
.
println
(
"Original String: "
+
originalString
);
// Display the reversed string.
System
.
out
.
println
(
"Reversed String: "
+
reversedString
);
// Check whether both strings are equal.
if
(
originalString
.
equals
(
reversedString
)) {
// Display the palindrome message.
System
.
out
.
println
(
"The Given String is a Palindrome."
);
}
else
{
// Display the non-palindrome message.
System
.
out
.
println
(
"The Given String is Not a Palindrome."
);
}
// Example Output:
// Enter a String: madam
// Original String: madam
// Reversed String: madam
// The Given String is a Palindrome.
// Close the Scanner object to release system resources.
scanner
.
close
();
}
}
Back
|
FazBrowse Home
|
New Git URL