1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import
java.util.Scanner;
public
class PalindromeString{
public
static void main(String[] args){
Scanner
in = new Scanner(System.in);
System.out.println("Enter
the string which you want to check whether that is palindrome or not:
");
String
s = in.next();
String
r = "";
for(int
i=s.length()-1; i>=0; i--){
r
= r+s.charAt(i);
}
System.out.println("Reverse
of entered string "+s+" is "+r);
if(r.equals(s)){
System.out.println("String
"+s+" is palindrome.");
}else{
System.out.println("String
"+s+" is not palindrome.");
}
}
}
|
Output
1
2
3
4
|
Enter
the string which you want to check whether that is palindrome or not:
selenium
Reverse
of entered string selenium is muineles
String
selenium is not palindrome.
|
0 comments:
Post a Comment