import java.util.Scanner;
public class Program_7 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String str = scan.next();
String rvs = new StringBuffer(str).reverse().toString();
if(str.equals(rvs)){
System.out.println("It is palindrome");
}
else{
System.out.println("It is not palindrome");
}
}
}
Find all the practical at one place of Gujarat Technological University(GTU) With Solutions.
Friday, September 21, 2018
Write a program to find that given number or string is palindrome or not.
Subscribe to:
Post Comments (Atom)
-
A country has a capital city A dining philosopher uses a fork A file is an ordinary file or a directory file Files cont...
-
import java.io.*; public class Dataio { public static void main(String args[]) throws IOException { DataInputStr...
No comments:
Post a Comment