-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaliandrome.java
51 lines (37 loc) · 1.02 KB
/
Paliandrome.java
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//check a given string is palindrome or not
package stringassignments;
import java.util.Scanner;
public class Paliandrome {
static boolean isPalindrome(String str) {
int i = 0; // Beginning of string
int j = str.length() - 1; // end of string
while (i < j) {
// If there is a mismatch
if (str.charAt(i) != str.charAt(j))
return false;
i++;
j--;
}
return true;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sn = new Scanner(System.in);
System.out.println("Enter the String to check :");
String str = sn.next();
String str1 = sn.next();
str=str.toLowerCase();
str1=str1.toLowerCase();
if(isPalindrome(str)) {
System.out.println(str + " is a PALINDROME");
}else {
System.out.println(str + " is a not a PALINDROME");
}
if(isPalindrome(str1)) {
System.out.println(str1 + " is a PALINDROME");
}else {
System.out.println(str1 + " is a not a PALINDROME");
}
sn.close();
}
}