473,378 Members | 1,209 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Palindrome assignment

I am still having an exceptional amount of trouble with java. This is my new assignment, if anyone can help I would greatly appreciate it. I don't even know where to start.

A word or phrase in which the letters spell the same message when written forward and backward (with whitespaces and punctuations not considered) is called a palindrome.

Write a simple Java program that detects palindromes. Your program should be named "PalindromeDetector.java", and the class in it should be named "PalindromeDetector".

The program should first ask for the input text:
Input text? user input

If the entered text is a palindrome, display the message:
This is a palindrome.

Otherwise display:
This is not a palindrome.

Notice that whitespaces and punctuations not considered; cases of characters don't matter, either. Thus the strings "ab, a " and "Was it a cat I saw?" are both palindromes. You can assume that the user input only possibly includes the following four punctuation marks:
, . ! ?
Mar 25 '07 #1
3 6106
r035198x
13,262 8TB
I am still having an exceptional amount of trouble with java. This is my new assignment, if anyone can help I would greatly appreciate it. I don't even know where to start.

A word or phrase in which the letters spell the same message when written forward and backward (with whitespaces and punctuations not considered) is called a palindrome.

Write a simple Java program that detects palindromes. Your program should be named "PalindromeDetector.java", and the class in it should be named "PalindromeDetector".

The program should first ask for the input text:
Input text? user input

If the entered text is a palindrome, display the message:
This is a palindrome.

Otherwise display:
This is not a palindrome.

Notice that whitespaces and punctuations not considered; cases of characters don't matter, either. Thus the strings "ab, a " and "Was it a cat I saw?" are both palindromes. You can assume that the user input only possibly includes the following four punctuation marks:
, . ! ?
Colin, go back to your teacher and explain to him your problems with the assignment. Once you get to understand the assignment better, you can come back with some code written and we can help from there.
Mar 26 '07 #2
ok so this is what I have for the code so far:

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3. public class PalTest
  4.   {
  5.    public static void main(String[] args)
  6.    throws java.io.IOException   
  7.   {
  8.    String inputString;
  9.    StringBuffer S;
  10.  
  11.    InputStreamReader isr = new InputStreamReader(System.in);
  12.  
  13.    BufferedReader br = new BufferedReader(isr);
  14.  
  15.    System.out.println("Input Text? ");
  16.    inputString  = br.readLine();
  17.  
  18.    S = new StringBuffer(inputString);
  19.    S.reverse();
  20.  
  21.    if (inputString.equalsIgnoreCase(S.toString())) {
  22.    System.out.println("This is a palindrome.");
  23.   }
  24.   else {
  25.   System.out.println("This is not a palindrome.");
  26. }
  27. }
  28. }
  29.  
My only problem now is getting it to accept the punctuations , . ! ?
Mar 27 '07 #3
r035198x
13,262 8TB
ok so this is what I have for the code so far:

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.util.*;
  3. public class PalTest
  4. {
  5. public static void main(String[] args)
  6. throws java.io.IOException 
  7. {
  8. String inputString;
  9. StringBuffer S;
  10.  
  11. InputStreamReader isr = new InputStreamReader(System.in);
  12.  
  13. BufferedReader br = new BufferedReader(isr);
  14.  
  15. System.out.println("Input Text? ");
  16. inputString = br.readLine();
  17.  
  18. S = new StringBuffer(inputString);
  19. S.reverse();
  20.  
  21. if (inputString.equalsIgnoreCase(S.toString())) {
  22. System.out.println("This is a palindrome.");
  23. }
  24. else {
  25. System.out.println("This is not a palindrome.");
  26. }
  27. }
  28. }
  29.  
My only problem now is getting it to accept the punctuations , . ! ?
What problems are you getting with the punctuation?
Mar 28 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Lorin Leone | last post by:
Can anyone help me modify the program so that it recognizes strings like "Anna" as palindromes. To make the program "case-insensitive." using the built-in C++ function "toupper". and so that it...
23
by: Amar Prakash Tripaithi | last post by:
Dan Hoey, who had recently graduated, wrote a C program to look for and construct the following beauty: A man, a plan, a caret, a ban, a myriad, a sum, a lac, a liar, a hoop, a pint, a catalpa,...
32
by: ramakrishnadeepak | last post by:
HI Everybody, I 've to submit a program on c.Can any one help me plz.........The problem is like this:: Write a program which computes the largest palindrome substring of a string. Input:...
4
by: outofmymind | last post by:
hi, im trying to solve the following question: Create a class responsible for determining whether a string is a palindrome. Show your test cases. Palindome mypal("bob"); ...
2
by: Synapse | last post by:
aloha people! I need help in my java palindrome program. It's a 5-digit palindrome checker. The code below is running good but i got a few problems on it. If I enter 33633, 11211, 45554, it will...
20
by: Wabz | last post by:
Hello mates, Does anyone know how to write a function that tests if an integer is a palindrome in C language?
2
by: bigtd08 | last post by:
help writing this palindrome program for my c++ class. HERE WHAT THE CODE SHOULD BE LIKE. Write a program that takes a line of input from the keyboard and check to see if that line is a palindrome....
8
by: chungjoel | last post by:
Hi, i'm new to C programming and i could use some help with an assignment. i would like to store a word in a linked list, with each letter of the word in a separate node of the linked list. i...
7
by: xiaolim | last post by:
hi, sorry to disturb again, currently i have an assignment on stacks and as show in the the title, i need to use stacks to determine palindrome. i've done part of my code, here it is: //...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.