FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaProgramming/StringBuilders/ReverseString.java at main · PrityKumari14/JavaProgramming · GitHub
PrityKumari14
/
JavaProgramming
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
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
JavaProgramming
/
StringBuilders
/
ReverseString.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (24 loc) · 762 Bytes
Breadcrumbs
JavaProgramming
/
StringBuilders
/
ReverseString.java
Copy path
File metadata and controls
30 lines (24 loc) · 762 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
//Reverse a String (using StringBuilder class)
package
StringBuilders
;
import
java
.
util
.*;
public
class
ReverseString
{
public
static
void
main
(
String
[]
args
) {
StringBuilder
sb
=
new
StringBuilder
(
"hello"
);
System
.
out
.
println
(
"The original string is :"
+
sb
);
for
(
int
i
=
0
;
i
<
sb
.
length
()/
2
;
i
++){
int
front
=
i
;
int
back
=
sb
.
length
()-
1
-
i
;
// 5-1-0 = 4
char
frontChar
=
sb
.
charAt
(
front
);
char
backChar
=
sb
.
charAt
(
back
);
sb
.
setCharAt
(
front
,
backChar
);
sb
.
setCharAt
(
back
,
frontChar
);
}
System
.
out
.
print
(
"Reverse string is : "
);
System
.
out
.
print
(
sb
);
}
}
//output
/*
The original string is :hello
Reverse string is : olleh
*/
Back
|
FazBrowse Home
|
New Git URL