how to find reverse of string without string funtion of
java.
Answers were Sorted based on User's Feedback
Answer / balumahendran.m(pavartha chenn
public class Pract {
public static void main(String args[]){
System.out.println(reverse("nnnnn ooooooooooooo nnnnnnnnnnnn mmmmmmmmmmmmm"));
}
public static String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) + str.charAt(0);
}
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / bokhtiar mehedy farsim
public class StringReverse {
public String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) +
str.charAt(0);
}
public static void main(String args[]){
StringReverse ob=new StringReverse();
System.out.println(ob.reverse("Hello"));
}
}
| Is This Answer Correct ? | 3 Yes | 5 No |
hai, i want to know how the connectionpool manager work in the java or netbeans.Anybody having the exact code plz give to me i have no idea about that so help me plz
How to read MS-word document in java without displaying junk (unnecessary) data?
i am trying to intigrate ejb and hibernate ,from session facade i am callind dao implemented through hibernate,i am getting a ClassDefNotFoundException for this org/hibernate/Session i ve set the class path at build path and in setEnv in weblogic still .........
Where can i find some sample applications for different J2EE frameworks like Spring,Struts ,JSF, Hibernate etc ??
an on-line examination application using html jsp servlet and jdbc. including session management and cookies
design an on-line bus reservation application using html jsp servlet and jdbc. also implement session management and cookies
Write Down Steps Using SAX Parser
How to run the Result Intemation System project in java for collage student in which result of internal exam marks send on parents mobile using SMS? what software required to run this project? please reply immediately...
how to find reverse of string without string funtion of java.
Write Down Steps Using SAX Parser
How to convert string containing decimal point into integer in java? For example given a string like "3.14" as input how to get integer 3 as result.
code inside filter to restrict users to access a servlet component .