Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
262 views

Java Program To Reverse A String

This document provides code for reversing a string in Java. It uses a for loop to extract each character from the original string in reverse order and append it to a new string variable. The reversed string is then printed as output. An alternative method is also shown using the reverse() method of the StringBuffer class to directly reverse a string.

Uploaded by

vinchooo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
262 views

Java Program To Reverse A String

This document provides code for reversing a string in Java. It uses a for loop to extract each character from the original string in reverse order and append it to a new string variable. The reversed string is then printed as output. An alternative method is also shown using the reverse() method of the StringBuffer class to directly reverse a string.

Uploaded by

vinchooo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Java Program To

Reverse A String

http://freepdf-books.com
This java program reverses a string entered
by the user. We use charAt method to
extract characters from the string and
append them in reverse order to reverse the
entered string.
Java programming code
import java.util.*;

class ReverseString
{
public static void main(String args[])
{
String original, reverse = "";
Scanner in = new Scanner(System.in);

System.out.println("Enter a string to reverse");


original = in.nextLine();

int length = original.length();

for ( int i = length - 1 ; i >= 0 ; i-- )


reverse = reverse + original.charAt(i);

System.out.println("Reverse of entered string is:


"+reverse);
}
}

Download Reverse string program class file.

http://freepdf-books.com
Output of program:

Reverse string using StringBuffer class


class InvertString
{
public static void main(String args[])
{
StringBuffer a = new StringBuffer("Java programming is
fun");
System.out.println(a.reverse());
}
}

StringBuffer class contains a method


reverse which can be used to reverse or
invert an object of this class.

http://freepdf-books.com

You might also like