Home > Java > Java Program to find weather a given string is palindrome or not – Q18

Java Program to find weather a given string is palindrome or not – Q18


Q18: Java Program to find weather a given string is palindrome or not

import javax.swing.*;

class palindrome{
	public static void main(String args[]){
		String wd;
		int i, len;
		boolean ispal;

		wd = JOptionPane.showInputDialog("Enter a Word:");
		len = wd.length();
		
		i=0;
		ispal=true;
		for(;i<=len;){
			if(wd.charAt(i) == wd.charAt(len-1)){
				i++;
				len--;
				}
			else{
				ispal = false;
				break;
			}
		}
		if(ispal==true)
			System.out.println("The String " + wd + " is Palindrome.");
		else
			System.out.println("The String " + wd + " is not Palindrome.");
	}
}

… from College notes (BCA/MCA assignments):


Advertisement
Categories: Java Tags: ,
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: