can you program for reverse string?
Answers were Sorted based on User's Feedback
Answer / raj
public static void main (String args[])
{ String s1="1234567";
for(int i=s1.length()-1;i>=0;i--)
{
System.out.print(s1.charAt(i));
}
}
Is This Answer Correct ? | 25 Yes | 0 No |
Answer / narayanan
public class reverse {
public static void main(String args[]){
String s="malayalam";
StringBuffer sb=new StringBuffer();
int k=s.length();
for (int i = k-1; i >-1; i--) {
sb.append(s.charAt(i));
}
System.out.println(sb);
}
}
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / indumathi
public class StringReverseExample {
public static void main(String[] args)
{
String string=args[0];
String reverse = new StringBuffer
(string).reverse().toString();
System.out.println("\nString before
reverse:"+string);
System.out.println("String after
reverse:"+reverse);
}
}
Is This Answer Correct ? | 9 Yes | 5 No |
Answer / suswagata choudhury
public class Reverse {
public static void main(String args[]){
String s="SUSWAGATA";
StringBuffer sb=new StringBuffer(s);
System.out.println(sb.reverse());
}
}
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / pratyush kumar nayak
String Original,Reverse="";
System.out.println("Enter String To Reverse");
Scanner sc=new Scanner(System.in);
Original=sc.nextLine();
int length=Original.length();
for(int i=length-1;i>=0;i--){
Reverse=Reverse+Original.charAt(i);
}
System.out.println("The Reversed String is " + Reverse);
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suresh
class suresh
{
public static void main(String args[])
{
String s="sureshreddy";
for(i=s.length()-1;i>=0;i--)
{
System.out.println(s.charAt(i));
System.out.println(s.length());//it wil print the length
}
}
}
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / caughtme
say string s1="1234567";
for(int i=s1.length()-1;i<=0;i--)
{
System.out.Println(CharAt[i].toString());
}
Is This Answer Correct ? | 0 Yes | 15 No |
What is the advantage of functional interface in java 8?
What is the difference between compile-time polymorphism and runtime polymorphism?
Is set thread safe java?
how to make the double-tone class ? as we have singletone class..?
Explain the reason behind ending a program with a system.exit(0)?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
Why java Don't Support Multiple interitence
Can abstract class have private constructor?
What purpose do the keywords final, finally, and finalize fulfill?
What is math in java?
Difference between Encapsulation and Abstraction
When finalize method is called?